この戦略は,トレイルストップ (TS) の基礎として平均真差 (ATR) を使用し,トレンドをフォローするためにストップロスのポジションを動的に調整する.価格が有利な方向に動くと,ストップロスのポジションは相応に調整され,利益をロックする.価格が不利な方向に動くと,ストップロスのポジションは変化せず,価格がストップロスの価格に達すると,ポジションは閉鎖される.この戦略の鍵は,ストップロスのポジションの動的調整にあります.これは,利益を保護し,トレンドが継続するにつれて利益が拡大することを可能にする.
ATRトレーリングストップ戦略は,価格変動の大きさに基づいてストップロスのポジションを動的に調整し,トレンド市場で良い結果を達成することができる.しかし,この戦略には,不安定な市場に対処できないこと,過剰なストップロスの頻度,ギャップオープニングを回避する困難などのリスクもあります.これらの欠陥に対処するために,戦略はトレンド判断,利益を得る戦略,最大ストップロスの制限の観点から最適化および改善することができます.これらの調整により,戦略の適応性と収益性が向上することが望ましい.
/*backtest start: 2024-04-01 00:00:00 end: 2024-04-30 23:59:59 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Long TAP", overlay=true) // Constants keyValueDefault = 3.0 keyValueStep = 0.5 atrPeriodDefault = 10 // Inputs keyValue = input.float(keyValueDefault, title="Key Value") atrPeriod = input.int(atrPeriodDefault, title="ATR Period") // Calculations xATR = ta.atr(atrPeriod) nLoss = keyValue * xATR // Trailing Stop Calculation var float xATRTrailingStop = 0.0 xATRTrailingStop := ta.highest(math.max(nz(xATRTrailingStop[1], 0), close - nLoss), 1) xATRTrailingStop := ta.lowest(math.min(nz(xATRTrailingStop, 0), close + nLoss), 1) // Position Calculation var int pos = 0 pos := nz(pos[1], 0) if (close[1] < nz(xATRTrailingStop, 0) and close > nz(xATRTrailingStop, 0)) pos := 1 else if (close[1] > nz(xATRTrailingStop, 0) and close < nz(xATRTrailingStop, 0)) pos := -1 // Plotting Trailing Stop var color xcolor = na if (pos == -1) xcolor := color.red else if (pos == 1) xcolor := color.green plot(xATRTrailingStop, color=xcolor, title="Trailing Stop") // Buy/Sell Signals buySignal = ta.crossover(close, xATRTrailingStop) sellSignal = ta.crossunder(close, xATRTrailingStop) // Strategy if (buySignal) strategy.entry("Long", strategy.long) label.new(bar_index, xATRTrailingStop, text="Buy Signal", color=color.green, style=label.style_label_up, yloc=yloc.belowbar) if (sellSignal) strategy.entry("Short", strategy.short) label.new(bar_index, xATRTrailingStop, text="Sell Signal", color=color.red, style=label.style_label_down, yloc=yloc.abovebar) // Alerts alertcondition(buySignal, title='UT BOT Buy', message='UT BOT Buy') alertcondition(sellSignal, title='UT BOT Sell', message='UT BOT Sell')