この戦略は,MACDクロスオーバーシグナルとRSIオーバーバイト/オーバーセールシグナルを使用して,MACDクロスオーバーシグナルとRSIオーバーセールシグナルを使用して,トレードタイミングを決定する2つの技術指標を組み合わせます.一方,戦略の信頼性を向上させる補助判断として,重量移動平均 (WMA) も導入しています.この戦略は1時間のタイムフレームで実行され,MACDがゴールデンクロスを形成し,RSIが50を超えるとロングポジションを開き,MACDがデスクロスを形成し,RSIが50を下回るとショートポジションを開きます.同時に,RSIが70を超えるとロングポジションを閉じて,RSIが30を下回るとショートポジションを閉じる.また,戦略は異なるタイムスケールでトレンド変化を判断するための複数のタイムフレームの変数を設定します.
この戦略の核心は,MACDとRSIという2つの技術指標の組み合わせによるものです.MACDは,市場傾向の変化を反映できる,高速線 (短期移動平均線) とスローライン (長期移動平均線) の違いから構成されています.高速線がスローラインを超えると,上向き傾向を示す黄金十字を形成し,逆に,ダウン傾向を示す死亡十字を形成します.RSIは,市場の過買いと過売り状態を測定する指標です.RSIが70を超えると,市場は過買いでリバウンドリスクに直面する可能性があることを示します.RSIが30を下回ると,市場は過売りでリバウンド機会をもたらす可能性があることを示します.
この戦略は,MACDとRSIを組み合わせ,MACDのトレンド判断とRSIのオーバーバイト/オーバーセール判断を使用して,取引タイミングをより正確に把握する.同時に,戦略は,加重移動平均 (WMA) を補助判断として導入する.WMAは,通常の移動平均と比較して最近の価格により重点を置くため,価格変化をより敏感に反映することができます.
さらに,戦略は,複数の時間枠 (15分,30分,1時間,2時間など) の変数を設定し,異なる時間スケールでトレンド変化を判断する.このマルチタイムフレーム分析方法は,戦略が市場傾向をより包括的に把握し,意思決定の正確性を向上させるのに役立ちます.
この戦略は,MACDとRSIという2つの効果的な技術指標を組み合わせ,WMAを1時間のタイムフレームで取引決定をするために補助判断として導入している.戦略論理は明確で,理解し実行しやすく,一定の実現性のある市場動向と過買い/過売状況をよりよく把握することができます.しかし,この戦略には,遅延,単一タイムフレーム,リスク管理の欠如など,いくつかの制限とリスクもあります.将来,戦略は,より多くの指標,継続的なタイムフレーム,リスク管理の強化,パラメータ最適化,その他を導入することで改善され,その安定性と収益性を高めることができます.全体的に,この戦略は定量的な取引のための思考方法を提供していますが,実際には依然として最適化および精製する必要があります.
/*backtest start: 2024-05-01 00:00:00 end: 2024-05-31 23:59:59 period: 2h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Improved MACD and RSI Trading Strategy", overlay=true, initial_capital=10000, commission_type=strategy.commission.percent, commission_value=0.01, default_qty_type=strategy.percent_of_equity, default_qty_value=100) // MACD 設置 fast_length = input(12, title="MACD Fast Length") slow_length = input(26, title="MACD Slow Length") signal_smoothing = input(9, title="MACD Signal Smoothing") // RSI 設置 input_rsi_length = input.int(14, title="RSI Length") input_rsi_source = input(close, "RSI Source") RSI = ta.rsi(input_rsi_source, input_rsi_length) // 計算MACD和信號線 [macdLine, signalLine, _] = ta.macd(close, fast_length, slow_length, signal_smoothing) // 自然交易理論:利用MACD和RSI的結合 ma(source, length, type) => switch type "SMA" => ta.sma(source, length) "EMA" => ta.ema(source, length) "SMMA (RMA)" => ta.rma(source, length) "WMA" => ta.wma(source, length) "VWMA" => ta.vwma(source, length) maTypeInput = input.string("SMA", title="Moving Average Type", options=["SMA", "EMA", "SMMA (RMA)", "WMA", "VWMA"], group="MA Settings") maLengthInput = input.int(14, title="Moving Average Length", group="MA Settings") macdMA = ma(macdLine, maLengthInput, maTypeInput) // 設置交易信號 longCondition = ta.crossover(macdLine, signalLine) and macdLine > macdMA and RSI < 70 shortCondition = ta.crossunder(macdLine, signalLine) and macdLine < macdMA and RSI > 30 // 定義時間框架 tf_15m = ta.change(RSI, 15) > 0 ? 1 : 0 tf_30m = ta.change(RSI, 30) > 0 ? 1 : 0 tf_1h = ta.change(RSI, 60) > 0 ? 1 : 0 tf_2h = ta.change(RSI, 120) > 0 ? 1 : 0 tf_4h = ta.change(RSI, 240) > 0 ? 1 : 0 tf_6h = ta.change(RSI, 360) > 0 ? 1 : 0 tf_8h = ta.change(RSI, 480) > 0 ? 1 : 0 tf_12h = ta.change(RSI, 720) > 0 ? 1 : 0 tf_1d = ta.change(RSI, 1440) > 0 ? 1 : 0 // 設置開倉、平倉和空倉條件 if (longCondition and tf_1h and RSI > 50) strategy.entry("Long", strategy.long) if (shortCondition and tf_1h and RSI < 50) strategy.entry("Short", strategy.short) if (tf_1h and RSI > 70) strategy.close("Long") if (tf_1h and RSI < 30) strategy.close("Short") // 加入其他策略 // 定義加權平均價格 wma(source, length) => wma = 0.0 sum = 0.0 sum_wts = 0.0 for i = 0 to length - 1 wts = (length - i) * (length - i) sum := sum + source[i] * wts sum_wts := sum_wts + wts wma := sum / sum_wts wmaLength = input.int(20, title="WMA Length", group="Other Strategies") wmaValue = wma(close, wmaLength) // 設置交易信號 longWMACondition = close > wmaValue shortWMACondition = close < wmaValue if (longWMACondition and tf_1h and RSI > 50) strategy.entry("Long WMA", strategy.long) if (shortWMACondition and tf_1h and RSI < 50) strategy.entry("Short WMA", strategy.short) if (tf_1h and RSI > 70) strategy.close("Long WMA") if (tf_1h and RSI < 30) strategy.close("Short WMA") // 繪製MACD和RSI plot(macdLine, color=color.blue, title="MACD Line") plot(signalLine, color=color.red, title="Signal Line")