この戦略は,ボリンジャーバンドと相対強度指数 (RSI) の技術指標を組み合わせます.RSI指標が過剰販売または過剰購入レベルを横切り,価格がボリンジャーバンドに触れたり破ったときに購入および売却信号を生成します.
ベースラインとして20期SMAを計算する.上帯はベース+2標準偏差,下帯はベース−2標準偏差でボリンジャー帯を構成する.
14 期間のRSIを計算します. RSIが70を超えると買い過ぎ,30を超えると売過ぎです.
RSIが30を下回り,価格が下帯を下回ると,買い信号が生成される.RSIが70を下回り,価格が上帯を下回ると,売り信号が生成される.
ボリンジャー・バンドは標準偏差を用いて 価格変動や将来の傾向を判断します
RSIは過剰購入と過剰販売のレベルを判断します. ボリンジャー帯と組み合わせると,逆転の機会を効果的に発見できます.
RSIはブレークアウト信号を簡単に形成できます.ボリンジャーバンドと組み合わせると,取引信号はより正確で信頼性があります.
ボリンジャー帯は100%正確ではなく,価格が上下帯を突破して走る可能性があります.
RSIはボリンジャー帯と一致しない偽のブレイクアウト信号も形成する可能性があります.
適切なパラメータ調節が重要です.不適切な設定は,頻繁にまたは稀な取引信号につながる可能性があります.
異なるパラメータ期間をテストして最適なパラメータ組み合わせを見つけます.
KD,MACDなどの他の指標を組み込み 信号の信頼性を向上させる
ストップ・ロスを最適化し リスクをコントロールするためにバックテスト結果に基づいて 利益を取ります
この戦略は,トレードシグナルを生成するためにボリンジャーバンド
/*backtest start: 2023-12-21 00:00:00 end: 2023-12-28 00:00:00 period: 10m basePeriod: 1m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Bollinger Bands and RSI Strategy", overlay=false) // Define the parameters length = input.int(20, "Length", minval=1) src = input(close, "Source") mult = input.float(2.0, "StdDev", minval=0.001, maxval=50) rsiLength = input.int(14, "RSI Length", minval=1) rsiOverbought = input.int(70, "RSI Overbought Level", minval=1, maxval=100) rsiOversold = input.int(30, "RSI Oversold Level", minval=1, maxval=100) // Calculate the Bollinger Bands basis = ta.sma(src, length) dev = mult * ta.stdev(src, length) upper = basis + dev lower = basis - dev // Plot the Bollinger Bands plot(basis, "Basis", color=#FF6D00) p1 = plot(upper, "Upper", color=#2962FF) p2 = plot(lower, "Lower", color=#2962FF) fill(p1, p2, color=color.rgb(33, 150, 243, 90), title="Background") // Calculate the RSI rsi = ta.rsi(src, rsiLength) // Plot the RSI plot(rsi, "RSI", color=#FF6D00) // Define the entry and exit conditions longCondition = ta.crossover(rsi, rsiOversold) and src < lower // Use ta.crossover here if (longCondition) strategy.entry("Long", strategy.long) shortCondition = ta.crossunder(rsi, rsiOverbought) and src > upper // Use ta.crossunder here if (shortCondition) strategy.entry("Short", strategy.short) // Plot the buy and sell signals plotshape(longCondition, title="Buy", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small) plotshape(shortCondition, title="Sell", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)