二重指標突破戦略は,RSI指標と閉じる価格指標を組み合わせて,低価格の購入と高価格の販売を達成する.この戦略は,低回帰リスクでシンプルで実用的で,中長期の保有に適しています.
この戦略は主に以下の2つの判断指標に基づいています.
二重指標の突破戦略には以下の利点があります.
この戦略にはいくつかのリスクもあります:
上記のリスクは,RSIパラメータの最適化,市場の状況の評価,および判断のための他の指標の使用によって回避できます.
/*backtest start: 2023-12-01 00:00:00 end: 2023-12-31 23:59:59 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/ // © hobbiecode // If RSI(2) is less than 15, then enter at the close. // Exit on close if today’s close is higher than yesterday’s high. //@version=5 strategy("Hobbiecode - RSI + Close previous day", overlay=true) // RSI parameters rsi_period = 2 rsi_lower = 15 // Calculate RSI rsi_val = ta.rsi(close, rsi_period) // Check if RSI is lower than the defined threshold if (rsi_val < rsi_lower) strategy.entry("Buy", strategy.long) // Check if today's close is higher than yesterday's high if (strategy.position_size > 0 and close > ta.highest(high[1], 1)) strategy.close("Buy") // Plot RSI on chart plot(rsi_val, title="RSI", color=color.red) hline(rsi_lower, title="Oversold Level", color=color.blue)