
この戦略は,2つの異なる周期の指数移動平均 ((EMA) の交差を取引信号として使用し,同時に固定ポイントのストップとストップを設定する.短期EMAが下から上へと長期EMAを横切るときは,ポジションを多く開く.短期EMAが上から下へと長期EMAを横切るときは,ポジションを空にする.リスクを制御し,利益をロックするために取引時に固定ポイントのストップとストップを設定する.
双均線交差ストップ・ロスト戦略は,EMA交差によって取引シグナルを生成し,固定ポイント数ストップ・ロストを設定してリスクを制御する簡単な取引戦略である.この戦略の優点は,論理的に明確で,実行しやすいこと,市場トレンドをうまく捉えることができるという点にある.しかし,同時に,偽信号,トレンドの遅延,市場と固定ストップを調整するなどのリスクもある.最適化方向は,より多くの指標の最適化パラメータ,ダイナミックストップ,ポジション管理,フィルターの追加などの導入を含む.トレーダーは,自分のリスク好みと市場の特徴に応じて,この戦略を適切に最適化し,調整して,戦略の安定性と収益性を向上させることができる.
/*backtest
start: 2024-05-01 00:00:00
end: 2024-05-31 23:59:59
period: 1h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("EMA5 Cross EAM200 && SL/TP 50 and 200 Point Target", overlay=true)
// Define input parameters for EMA lengths
ema_5 = input.int(5, title="Fast EMA Length")
ema_200 = input.int(200, title="Slow EMA Length")
// Define input parameters for stop loss and profit target in points
stopLossPoints = input.float(50, title="Stop Loss (Points)")
profitTargetPoints = input.float(200, title="Profit Target (Points)")
// Calculate EMAs
price = close
emafast = ta.ema(price, ema_5)
emaslow = ta.ema(price, ema_200)
// Plot EMAs on chart
plot(emafast, title="5-period EMA", color=color.black)
plot(emaslow, title="200-period EMA", color=color.blue)
// Extra lines if needed
ema_13 = input.int(13, title="13 EMA")
ema_13_line = ta.ema(price, ema_13)
plot(ema_13_line, title="13-period EMA", color=color.rgb(156, 39, 176, 90))
ema_20 = input.int(20, title="20 EMA")
ema_20_line = ta.ema(price, ema_20)
plot(ema_20_line, title="20-period EMA", color=color.red)
// Define entry conditions
longCondition = ta.crossover(emafast, emaslow)
shortCondition = ta.crossunder(emafast, emaslow)
// Counter to keep track of the number of bars since the entry
var int barCount = na
// Reset counter and enter long trade
if (longCondition)
strategy.entry("Long", strategy.long, comment="Long")
barCount := 0
// Reset counter and enter short trade
if (shortCondition)
strategy.entry("Short", strategy.short, comment="Short")
barCount := 0
// Increment counter if in trade
if (strategy.opentrades > 0)
barCount += 1
// Calculate entry price
entryPrice = strategy.position_avg_price
// Exit long trade if stop loss, profit target hit, or 200 points have been reached
if (strategy.position_size > 0)
strategy.exit("Take Profit/Stop Loss", "Long", stop=entryPrice - stopLossPoints, limit=entryPrice + profitTargetPoints)
// Exit short trade if stop loss, profit target hit, or 200 points have been reached
if (strategy.position_size < 0)
strategy.exit("Take Profit/Stop Loss", "Short", stop=entryPrice + stopLossPoints, limit=entryPrice - profitTargetPoints)