Candle Reversal

Candle Reversal is a strategy that trades EURUSD on 1-hour bars. It holds at most 1 open trade.

confirmations

candle-reversal.abx
1strategy "Candle Reversal"
2market: EURUSD
3bars: 1h
4max_open: 1
5
6confirmations reversal_long:
7pattern: hammer() or engulfing(direction: up) or pin_bar()
8oversold: rsi(close, 14) < 35
9support: low <= lowest(low, 50)[1] + atr(14) * 0.5
10require: at least 2
11
12when reversal_long.passed:
13buy risk: 1%, stop: low - atr(14) * 0.5, target: 2.5R
What this script says

Candle Reversal is a strategy that trades EURUSD on 1-hour bars. It holds at most 1 open trade.

reversal_long passes when at least 2 of these 3 conditions are true: pattern (a hammer pattern or a bullish engulfing pattern or a pin bar pattern); oversold (the 14-bar RSI is below 35); support (the low is at or below the previous bar's lowest low of the last 50 bars plus 0.5 × the 14-bar ATR).

When reversal_long passes, it buys at market, risking 1% of the balance, with a stop at the low minus 0.5 × the 14-bar ATR and with a target 2.5R from the entry.

Try this in the Terminal. AlgoBars is free: $0 a month, no card needed.

Create my free account