この戦略は,15期と50期指数関数移動平均値 (EMA) のクロスオーバーに基づいた取引戦略である.この戦略は,リスク・リターン制御を最適化するために,スマートなストップ・ロストとテイク・プロフィートレベルを実装する.トレンド逆転信号を捕捉するだけでなく,市場の変動に基づいて取引パラメータを自動的に調整し,戦略の安定性と収益性を向上させる.
基本論理は,高速EMA (15期) と遅いEMA (50期) の間のクロスオーバー信号に基づいています.高速線がスローラインの上を横切ると長い信号,高速線が下を横切ると短い信号が生成されます.リスク管理の最適化のために,戦略は動的なストップロスの設定方法を採用し,前2カンドルの最低開口価格をロングストップロスと最高開口価格をショートストップロスとして使用します.利益目標はリスクの2倍に設定され,有利なリスク・リターン比率を保証します.戦略は取引のために口座資本の30%を使用し,リスク露出を制御するのに役立ちます.
これは,明確な論理を持つ,よく構造化されたEMAクロスオーバー戦略である.古典的な技術分析方法と近代的なリスク管理技術を組み合わせることで,戦略は有利なリスク報酬特性を達成する.最適化のための余地がある一方で,基本的なフレームワークは良い実用性と拡張性を示している.提案された最適化方向性を通じて,戦略のパフォーマンスはさらに向上することができる.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-11 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("EMA Cross - Any Direction", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=30) // Input for EMAs ema_short_length = input(15, title="Short EMA Length") ema_long_length = input(50, title="Long EMA Length") // Calculate EMAs ema_short = ta.ema(close, ema_short_length) ema_long = ta.ema(close, ema_long_length) // Plot EMAs plot(ema_short, color=color.blue, title="15 EMA") plot(ema_long, color=color.red, title="50 EMA") // Entry Conditions (Any EMA Cross) cross_condition = ta.crossover(ema_short, ema_long) or ta.crossunder(ema_short, ema_long) // Determine Trade Direction is_long = ta.crossover(ema_short, ema_long) is_short = ta.crossunder(ema_short, ema_long) // Stop Loss and Take Profit long_stop_loss = ta.lowest(open[1], 2) // Lowest open of the last 2 candles short_stop_loss = ta.highest(open[1], 2) // Highest open of the last 2 candles long_take_profit = close + 2 * (close - long_stop_loss) short_take_profit = close - 2 * (short_stop_loss - close) // Execute Trades if (cross_condition) if (is_long) strategy.entry("Long", strategy.long) strategy.exit("Exit Long", "Long", stop=long_stop_loss, limit=long_take_profit) else if (is_short) strategy.entry("Short", strategy.short) strategy.exit("Exit Short", "Short", stop=short_stop_loss, limit=short_take_profit) // Plot Stop Loss and Take Profit Levels plot(long_stop_loss, color=color.orange, title="Long Stop Loss", style=plot.style_circles, linewidth=2) plot(long_take_profit, color=color.green, title="Long Take Profit", style=plot.style_circles, linewidth=2) plot(short_stop_loss, color=color.orange, title="Short Stop Loss", style=plot.style_circles, linewidth=2) plot(short_take_profit, color=color.red, title="Short Take Profit", style=plot.style_circles, linewidth=2)