この戦略は,次の日のギャップ機会を予測するために,価格とボリュームが3倍高い高値に接近するかどうかを判断します.
戦略論理:
最新の3つのバーが3倍高い価格になるかチェックします.
最後の3バーの音量が増加しているかどうかを確認します.
3つ目のバーが オープンより上を閉ざされているか確認します
上記の条件が 市場閉店の近くで満たされた場合 次の日のギャップを予測します
高レバレッジのポジションを取って ギャップから利益を得る
利点:
3倍高い価格/量により精度が向上します
重要な時期での取引は利益の可能性を最大化します
決まった利益を得ることは 意思決定の困難を回避します
リスク:
予測は 単なる
非常に高いレバレッジは大きなリスクを持ち 慎重な管理が必要です
損失の大きさを制限できない 潜在的に大きな引き上げ
要約すると この戦略は 日末のパターンに基づいて 次の日の動きを予測しようと試みます 高い確率の利回り利得機会を 明らかに損失リスクとバランスで提供します しかし 極端な注意は不可欠です
/*backtest start: 2023-08-13 00:00:00 end: 2023-09-12 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/ // © SharemarketRaja //@version=4 //Scanner available strategy("3 Higher High Price & Vol", overlay=true) volma = sma(volume, 20) PriceHH = high > high[1] and high[1] > high[2] VolHH = volume > volume[1] and volume[1] > volume[2] Volma = volume > volma and volume[1] > volma[1] and volume[2] > volma[2] Allgreen = close > open and close[1] > open[1] and close[2] > open[2] PriceLL = low < low[1] and low[1] < low[2] Allred = close < open and close[1] < open[1] and close[2] < open[2] Qty = 100 Buy = (PriceHH == true and VolHH == true and Volma == true and Allgreen == true) and time("15", "1515-1530") Reversal = (PriceLL == true and VolHH == true and Volma == true and Allred == true) and time("15", "1515-1530") plotshape(Buy, style=shape.arrowup, size=size.large, color=color.green, location=location.belowbar) plotshape(Reversal, style=shape.arrowup, size=size.large, color=color.red, location=location.belowbar) strategy.entry(id="L", long=true, when=Buy) strategy.entry(id="R", long=true, when=Reversal) // strategy.exit(id="LE", from_entry="L", profit=Profit, loss=Loss) // strategy.close_all(when=(time("15", "1500-1515")) )