この戦略は,多重移動平均値とストカストティックオシレータークロスオーバー信号を組み合わせる定量的な取引アプローチである. ストカストティックオシレーターのオーバーバイト/オーバーセール特性とともに,短期,中期,長期移動平均値を活用し,多重信号確認を通じて市場のトレンド逆転と取引機会を把握する. この戦略の核心強みは,信号信頼性を高めるために複数の技術指標をクロスバリダーションに使用することにある.
この戦略は5つの移動平均値 (3日,5日,6日,10日および80日) とストカスティックオシレーターを使用しています. 取引信号は以下の条件に基づいて起動されます.
この戦略は,複数の移動平均値とストカスティックオシレーターの組み合わせを通じて包括的な取引システムを確立する.その強みは信号の信頼性とシステム安定性にあるが,取引コストと市場状況への適応性にも注意を払う必要がある.継続的な最適化と精製を通じて,この戦略は実際の取引条件で安定した収益を達成する約束を示している.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-10 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy(title="Moving Average and Stochastic Crossover Strategy", overlay=true) // Calculate the moving averages ma3 = ta.sma(close, 3) ma5 = ta.sma(close, 5) ma6 = ta.sma(close, 6) ma10 = ta.sma(close, 10) ma80 = ta.sma(close, 80) // Stochastic Oscillator with settings %K(15), %D(9), and slowing 9 k = ta.stoch(close, high, low, 15) d = ta.sma(k, 9) slow_d = ta.sma(d, 9) // Buy signal confirmation: MA10 crosses above MA5, MA6, and K line crosses above D line buySignalConfirmation = ta.crossover(ma10, ma5) and ta.crossover(ma10, ma6) and ta.crossover(k, d) // Sell signal confirmation: MA5 crosses above MA10, MA6, and D line crosses above K line sellSignalConfirmation = ta.crossunder(ma5, ma10) and ta.crossunder(ma5, ma6) and ta.crossunder(d, k) // Strategy logic if (buySignalConfirmation) strategy.entry("Buy", strategy.long) if (sellSignalConfirmation) strategy.entry("Sell", strategy.short) // Plot the moving averages and Stochastic Oscillator for visualization plot(ma3, color=color.orange, title="MA3", linewidth=2) plot(ma5, color=color.blue, title="MA5", linewidth=2) plot(ma6, color=color.purple, title="MA6", linewidth=2) plot(ma10, color=color.green, title="MA10", linewidth=2) plot(ma80, color=color.red, title="MA80", linewidth=2) plot(k, color=color.blue, title="%K", linewidth=2) plot(d, color=color.red, title="%D", linewidth=2) plot(slow_d, color=color.purple, title="Slow %D", linewidth=2)