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]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]Multi-timeframe RSI confirmation
Last updated