
この戦略は,2つの移動平均線 (((MA) を使って取引信号を生成する.より短い周期のMAがより長い周期のMAを下から上へと渡るとき,買入信号を生成する.より短い周期のMAがより長い周期のMAを上から下へと渡るとき,売出信号を生成する.この戦略は,取引時間帯 (((UTC 8時~20時) とストップポイント (((150ポイント) を同時に設定する.
この戦略は,2つの異なる周期の移動平均の交差を基に取引信号を生成し,トレンド市場に適用されます.取引時間帯と固定ストップポイントを設定することで,リスクを一定程度に制御できます.しかし,この戦略は,揺れ動いている市場ではうまく機能しない可能性があり,固定ストップポイントは,戦略の利益のスペースを制限します.将来,より多くの技術指標を導入し,ストップポイントの設定を最適化し,市場微細構造情報と組み合わせて,異なる状態の市場に対して異なるパラメータの設定をとり,この戦略を最適化することを考慮することができます.
/*backtest
start: 2024-03-01 00:00:00
end: 2024-03-31 23:59:59
period: 1h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=4
strategy("Moving Average Crossover Strategy", overlay=true)
// User-defined moving average periods
ma1Periods = input(5, title="First Moving Average Periods")
ma2Periods = input(20, title="Second Moving Average Periods")
// Calculate moving averages
ma1 = sma(close, ma1Periods)
ma2 = sma(close, ma2Periods)
// Plot moving averages
plot(ma1, color=color.red, linewidth=2, title="First Moving Average")
plot(ma2, color=color.blue, linewidth=2, title="Second Moving Average")
// Detect crossovers and crossunders
bullishCross = crossover(ma1, ma2)
bearishCross = crossunder(ma1, ma2)
// Define trading hours (8 AM to 2 PM UTC)
startHour = 8
endHour = 20
utcHour = hour(time, "UTC")
isMarketOpen = true
// Define profit target
profitTarget = 150
// Check if the price has closed above/below the MA for the past 4 bars
aboveMa = close[4] > ma1[4] and close[3] > ma1[3] and close[2] > ma1[2] and close[1] > ma1[1]
belowMa = close[4] < ma1[4] and close[3] < ma1[3] and close[2] < ma1[2] and close[1] < ma1[1]
// Create buy and sell signals
if (bullishCross and isMarketOpen and aboveMa)
strategy.entry("Buy", strategy.long)
strategy.exit("Sell", "Buy", profit=profitTarget)
if (bearishCross and isMarketOpen and belowMa)
strategy.entry("Sell", strategy.short)
strategy.exit("Cover", "Sell", profit=profitTarget)
// Plot shapes on crossovers
plotshape(series=bullishCross and isMarketOpen and aboveMa, location=location.belowbar, color=color.green, style=shape.labelup, text="Buy")
plotshape(series=bearishCross and isMarketOpen and belowMa, location=location.abovebar, color=color.red, style=shape.labeldown, text="Sell")