この戦略は,急速な30日間の単純な移動平均値と,株価の遅い33日間の単純な移動平均値が交差するときに,LONGまたはSHORTエントリー信号を生成する.逆の信号が発生するとすぐにポジションを退場する.これは,トレンドの変化を効果的に捉える.
この戦略の核心は,高速30日MAと遅い33日MAを計算することです.高速線は価格変化により速く反応することができ,スローラインはより優れたフィルタリング効果を持っています.高速線がスローラインを上向きに突破すると,購入信号が生成されます.これは,価格が上昇し始め,スローラインがまだ遅れながら高速線が反応したことを示します.高速線がスローラインを下向きに突破すると,販売信号が生成されます.これは,高速線が反応した一方で価格が低下し始めることを示します.しかし,スローラインはまだ遅れています.
このような高速かつ遅いMAクロスオーバー設計により,新しいトレンドが開始され,反対信号で終了すると取引信号を生成し,中期から長期間の価格トレンドを効果的に捉えることができます.同時に,市場変動に誤導されるのを避けることができます.
この戦略には以下の利点があります.
この戦略にはいくつかのリスクもあります:
パラメータ最適化,ストップ・ロスのレベル設定,トレンドが明確であるときにのみ取引などのような方法がこれらのリスクを制御し,軽減するために使用できます.
戦略は以下の側面で最適化できます.
テストと最適化によって,戦略ルールは,さまざまな市場環境でより信頼性の高い取引信号を得るために継続的に改善することができます.
概要すると,このダブルMAクロスオーバーブレイクストラテジーは非常にシンプルで実用的です.高速MAと遅いMAを組み合わせることで,中長期トレンドの始まりを効果的に特定し,比較的信頼できる取引信号を生成することができます.また,ストップロスのルールは実装が簡単です.さらなる最適化により,この戦略は価値のある長期的定量システムになることができます.
/*backtest start: 2022-11-20 00:00:00 end: 2023-11-26 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=3 //future strategy //strategy(title = "es1!_1minute_hull", default_qty_type = strategy.fixed, initial_capital=250000, overlay = true, commission_type=strategy.commission.cash_per_contract,commission_value=2, calc_on_order_fills=false, calc_on_every_tick=false,pyramiding=0) //strategy.risk.max_position_size(2) //stock strategy strategy(title = "stub", default_qty_type = strategy.percent_of_equity, default_qty_value = 100, initial_capital=1000000, overlay = false)//, calc_on_order_fills=true, calc_on_every_tick=true) //forex strategy //strategy(title = "stub", default_qty_type = strategy.percent_of_equity, default_qty_value = 100, overlay = true,initial_capital=250000, default_qty_type = strategy.percent_of_equity) //crypto strategy //strategy(title = "stub", default_qty_type = strategy.percent_of_equity, default_qty_value = 100, overlay = true, commission_type=strategy.commission.percent,commission_value=.005,default_qty_value=10000) //strategy.risk.allow_entry_in(strategy.direction.long) // There will be no short entries, only exits from long. testStartYear = 2010 testStartMonth = 1 testStartDay = 1 testPeriodStart = timestamp(testStartYear,testStartMonth,testStartDay,0,0) testEndYear = 2039 testEndMonth = 1 testEndDay = 1 testPeriodEnd = timestamp(testEndYear,testEndMonth,testEndDay,0,0) testPeriod() => //true time >= testPeriodStart and time <= testPeriodEnd ? true : false fast_length = 30 slow_length = 33 ema1 = 0.0 ema2 = 0.0 volumeSum1 = sum(volume, fast_length) volumeSum2 = sum(volume, slow_length) //ema1 := (((volumeSum1 - volume) * nz(ema1[1]) + volume * close) / volumeSum1) ema1 := ema(close,fast_length) //ema2 := (((volumeSum2 - volume) * nz(ema2[1]) + volume * close) / volumeSum2) ema2 := ema(close,slow_length) plot(ema1,color=#00ff00, linewidth=3) plot(ema2, color=#ffff00, linewidth=3) go_long = crossover(ema1,ema2) go_short = crossunder(ema1,ema2) if testPeriod() strategy.entry("long_ride", strategy.long, when=go_long) strategy.entry("short_ride", strategy.short,when=go_short) strategy.close("long_ride",when=go_short) strategy.close("short_ride",when=go_long)