Examples

Proven graph patterns you can copy.

RSI mean reversion

flowchart TD
  MD[Market Data\nEURUSD 1H] --> RSI[RSI\nperiod: 14]
  RSI --> L[Compare\nRSI < 30]
  RSI --> H[Compare\nRSI > 70]
  L --> BUY[Buy Order]
  H --> SELL[Sell Order]

Notes

  • Direction is auto-detected as long & short.

  • Start with wide thresholds, then tighten.

SMC: Order Block + FVG confirmation

flowchart TD
  MD[Market Data] --> SHL[Swing Highs/Lows\nswing_length: 50]
  SHL --> OB[Order Blocks]
  MD --> FVG[Fair Value Gaps]

  OB --> OB1[Compare\nOB == 1]
  FVG --> FVG1[Compare\nFVG == 1]

  OB1 --> AND[AND Gate]
  FVG1 --> AND
  AND --> BUY[Buy Order]

Notes

  • OB needs Swing Highs/Lows input.

  • Keep conditions explicit.

Multi-timeframe RSI confirmation

Notes

  • Use higher timeframe as a filter.

  • Keep the base timeframe for entries.

Last updated