トレンドフォローエクスポネンショナル・ムービング・アベア戦略は,トレンドに基づいた定量的な取引戦略である.暗号市場における潜在的なエントリーと出口信号を特定するために,異なる期間のエクポネンショナル・ムービング・アベア (EMA) を使用する.異なるEMA間のクロスオーバーを追跡することによって,潜在的な利益を最大化し,リスクを軽減するために,引き下げとトレンドエントリーの両方の機会を発見することができる.
この戦略は,それぞれ8年,12年,24年,72年の期間を持つ4つのEMAを使用している.それらはトレンド方向のチャート上の視覚的なガイドとして機能する.閉じる価格が遅いEMAを突破すると,購入機会をシグナル化する.高速なEMAが遅いEMAを突破すると,販売機会をシグナル化する.
2つの入力信号があります:
3つの出口信号があります.
この戦略の最大の利点は,引き下げとトレンドの機会の両方を活用する能力である. EMAのコンボが速く遅くなることで,短期変動によって誤導されるのを防ぐ. EMAは,長期的トレンドを効果的に捉えるために価格ノイズもフィルタリングする.全体的な強みには以下が含まれます:
いくつかのリスクは予防する必要があります:
次の措置は,上記リスクを制御するのに役立ちます.
さらに最適化できる余地があります.
このEMAトラッキング戦略は,エントリのためのEMAクロスオーバーを通じて,トレンドとプルバックの機会の両方を活用する.高い構成可能性,シンプルさ,効果的なリスク制御により,パラメータチューニングと増進的な精製によりより高いパフォーマンスの大きな可能性を秘めています.その強みは,推奨されるトレンドフォローリングシステムになります.
/*backtest start: 2023-10-31 00:00:00 end: 2023-11-30 00:00:00 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © moondevonyt //@version=5 strategy("Cornoflower Trend Following Crypto", overlay=true) // Input Settings lenEma8 = input(8, title="Length of 8 EMA") lenEma12 = input(12, title="Length of 12 EMA") lenEma24 = input(24, title="Length of 24 EMA") lenEma72 = input(72, title="Length of 72 EMA") // Calculate the EMAs ema8 = ta.ema(close, lenEma8) ema12 = ta.ema(close, lenEma12) ema24 = ta.ema(close, lenEma24) ema72 = ta.ema(close, lenEma72) // Entry Conditions pullbackEntry = ta.crossover(close, ema12) and ta.crossover(close, ema24) and ta.crossover(close, ema72) initialEntry = ta.crossover(close, ema72) and ta.crossover(ema8, ema12) and ta.crossover(ema8, ema24) // Exit Conditions profitTarget = 100 // Example target in pips, adjust according to your preference trailingStop = 50 // Example trailing stop value in pips, adjust according to your preference exitCondition = ta.crossunder(ema12, ema24) // Execute Strategy if pullbackEntry strategy.entry("Pullback Entry", strategy.long) if initialEntry strategy.entry("Initial Entry", strategy.long) if strategy.position_size > 0 strategy.exit("Profit Target", "Pullback Entry", limit=close + (profitTarget * syminfo.mintick)) strategy.exit("Trailing Stop", "Pullback Entry", stop=close - (trailingStop * syminfo.mintick), trail_points=trailingStop) strategy.exit("Exit Condition", "Initial Entry", stop=close, when=exitCondition) // Plot EMAs plot(ema8, color=color.yellow, title="8 EMA", linewidth=1, style=plot.style_line) plot(ema12, color=color.purple, title="12 EMA", linewidth=1, style=plot.style_line) plot(ema24, color=color.blue, title="24 EMA", linewidth=1, style=plot.style_line) plot(ema72, color=color.rgb(235, 255, 59), title="72 EMA", linewidth=1, style=plot.style_line)