Strategy template

RSI Mean Reversion With Exit

Illustrative template shell for how a strategy page may be structured during Private Beta. The example below is an illustrative target Beta rule structure for website demonstration, not a trading recommendation.

Rule framework

The Rules

setup.logic
  • CLOSE > SMA(200)
  • AND RSI(2) < 10
  • THEN ENTER LONG
  • EXIT WHEN RSI(2) > 70

Setup structure: an uptrend filter (close above the 200-bar SMA) combined with a deeply oversold 2-period RSI to time a long entry, with the exit keyed to RSI(2) mean-reverting back above 70. The rule expression encodes trend context, oversold trigger, entry, and exit as one chain.

Examples are illustrative target Beta rule structures, not trading recommendations.

After running a historical test, a user would review the trade list, chart annotations marking each qualifying bar, the entry and exit prints per trade, and the count of triggered setups to see whether the structure fires as expected.

Future interactive mockup

Logic Composer Preview

[CLOSE > SMA(200)]AND[RSI(2) < 10]THEN[ENTER LONG]

Historical output

Coming soon

Validation status

In review

Public examples

Illustrative only