
この戦略は,多周期指数移動平均 ((EMA) と相対的に強い指標 ((RSI) に基づくトレンド追跡取引システムである. この戦略は,20,50,100の3周期のEMAトレンドを判断し,価格突破とRSIのオーバーバイシグナルと組み合わせて取引決定を行う. この戦略は,主にトレンド市場に適用され,複数の技術指標の検証によって取引の正確性を向上させる.
戦略の中核となるロジックには、次の主要な部分が含まれます。
これは,トレンド追跡とダイナミクス反転を組み合わせた複合戦略システムである.複数の技術指標の配合使用により,戦略を簡潔かつ分かりやすく保つ一方で,優れたリスク・利益特性を実現している.戦略の核心的な優位性は,厳格なトレンド確認機構と完善したリスク管理システムにあるが,実用的なアプリケーションでは,パラメータ最適化と市場環境の適応性に注意する必要がある.提案された最適化方向によって,戦略はさらに向上する余地がある.
/*backtest
start: 2024-02-18 00:00:00
end: 2025-02-17 00:00:00
period: 4h
basePeriod: 4h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("EMA Crossover + RSI Strategy", overlay=true, initial_capital=10000, default_qty_type=strategy.percent_of_equity, default_qty_value=200)
// Calculate EMAs
ema20 = ta.ema(close, 20)
ema50 = ta.ema(close, 50)
ema100 = ta.ema(close, 100)
// Calculate RSI
rsiPeriod = 14
rsiValue = ta.rsi(close, rsiPeriod)
// Determine if each EMA is trending up (current value greater than the previous value)
ema20_trending_up = ema20 > ema20[1]
ema50_trending_up = ema50 > ema50[1]
ema100_trending_up = ema100 > ema100[1]
all_emas_trending_up = ema20_trending_up and ema50_trending_up and ema100_trending_up
// Buy condition:
// 1. Price crosses above the EMA20 from below (using ta.crossover)
// 2. All three EMAs are trending upward
buySignal = ta.crossover(close, ema20) and all_emas_trending_up
// Sell conditions:
// Sell if RSI is above 70 OR price crosses below the EMA20 from above (using ta.crossunder)
sellSignal = (rsiValue > 70) or ta.crossunder(close, ema20)
// Enter a long position if the buy condition is met
if (buySignal)
strategy.entry("Long", strategy.long)
// Exit the long position if either sell condition is met
if (sellSignal)
strategy.close("Long")
// Plot the EMAs on the chart for visualization
plot(ema20, color=color.blue, title="EMA 20")
plot(ema50, color=color.orange, title="EMA 50")
plot(ema100, color=color.green, title="EMA 100")
// (Optional) Plot the RSI and a horizontal line at 70 for reference
plot(rsiValue, title="RSI", color=color.purple)
hline(70, title="Overbought (70)", color=color.red)