Recipes — built node by node
4 sample strategies covering the core concepts: trend-follow / mean-reversion / breakout / liquidity grab — open one below to get a fully-wired graph, then open it in canvas, tweak the params and experiment right away. (Note: full OrderBlock logic can't be built in the graph — it's Python-only; liquidity grab is the closest equivalent.)
- Trend-follow — EMA Cross — Enter LONG when EMA20 crosses up through EMA50 (the trend just turned up) — SL scales with volatility, TP = 1.5R
- Mean-reversion — RSI Oversold — Enter LONG when RSI < 30 (oversold, expecting a bounce back to the mean) — SL fixed at $5, TP = 1R
- Breakout — New High + ADX Filter — Enter LONG when price closes above the highest high of the prior 20 bars, and the market is actually trending (ADX > 25)
- Liquidity Grab — Sweep & Reclaim — Enter LONG when price pierces through the swing low (sweeping resting long-side stops), then closes back above that level — a strong bounce signal