
This is a trend following strategy based on the ATR (Average True Range) indicator, combining dynamic stop-loss and EMA crossover signals. The strategy calculates ATR to determine market volatility and uses this information to establish a dynamic trailing stop line. Trading signals are generated when price and EMA (Exponential Moving Average) break through the ATR trailing stop line. The strategy also offers the option to use regular or Heikin Ashi candles for calculations, adding flexibility.
The core logic of the strategy is based on the following key calculations: 1. Using ATR indicator to measure market volatility with adjustable period 2. Calculating dynamic stop-loss distance based on ATR value, adjusted by sensitivity parameter a 3. Building ATR trailing stop line that dynamically adjusts with price movement 4. Using 1-period EMA crossover with ATR trailing stop line to determine trading signals 5. Opening long positions when EMA breaks above ATR trailing stop line, short when breaking below 6. Option to use regular closing price or Heikin Ashi HLC3 price as calculation basis
This is a complete trading strategy combining dynamic trailing stops and moving average systems. It captures market volatility characteristics through the ATR indicator and provides trading signals using EMA crossover, forming a logically rigorous trading system. The strategy’s strengths lie in its dynamic adaptability and risk control capabilities, but attention needs to be paid to its performance in sideways markets. Through the suggested optimization directions, there is room for further improvement of the strategy.
/*backtest
start: 2024-05-15 00:00:00
end: 2024-08-08 00:00:00
period: 1d
basePeriod: 1d
exchanges: [{"eid":"Binance","currency":"ETH_USDT"}]
*/
//@version=6
strategy(title="UT Bot Strategy", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=100)
// Inputs
a = input.float(1, title="Key Value. 'This changes the sensitivity'")
c = input.int(10, title="ATR Period")
h = input.bool(false, title="Signals from Heikin Ashi Candles")
// Calculate ATR
xATR = ta.atr(c)
nLoss = a * xATR
// Source for calculations
src = h ? request.security(syminfo.tickerid, timeframe.period, hlc3) : close
// ATR Trailing Stop logic
var float xATRTrailingStop = na
if (not na(xATRTrailingStop[1]) and src > xATRTrailingStop[1] and src[1] > xATRTrailingStop[1])
xATRTrailingStop := math.max(xATRTrailingStop[1], src - nLoss)
else if (not na(xATRTrailingStop[1]) and src < xATRTrailingStop[1] and src[1] < xATRTrailingStop[1])
xATRTrailingStop := math.min(xATRTrailingStop[1], src + nLoss)
else
xATRTrailingStop := src > xATRTrailingStop[1] ? src - nLoss : src + nLoss
// Position logic
var int pos = 0
if (not na(xATRTrailingStop[1]) and src[1] < xATRTrailingStop[1] and src > xATRTrailingStop[1])
pos := 1
else if (not na(xATRTrailingStop[1]) and src[1] > xATRTrailingStop[1] and src < xATRTrailingStop[1])
pos := -1
else
pos := pos[1]
xcolor = pos == -1 ? color.red : pos == 1 ? color.green : color.blue
// Entry and Exit Signals
ema = ta.ema(src, 1)
above = ta.crossover(ema, xATRTrailingStop)
below = ta.crossover(xATRTrailingStop, ema)
buy = src > xATRTrailingStop and above
sell = src < xATRTrailingStop and below
// Strategy Execution
if (buy)
strategy.entry("UT Long", strategy.long)
if (sell)
strategy.entry("UT Short", strategy.short)
// Plotting and Alerts
plotshape(buy, title="Buy", text='Buy', style=shape.labelup, location=location.belowbar, color=color.green, textcolor=color.white, size=size.tiny)
plotshape(sell, title="Sell", text='Sell', style=shape.labeldown, location=location.abovebar, color=color.red, textcolor=color.white, size=size.tiny)
barcolor(src > xATRTrailingStop ? color.green : src < xATRTrailingStop ? color.red : na)
alertcondition(buy, title="UT Long", message="UT Long")
alertcondition(sell, title="UT Short", message="UT Short")