この戦略は,日々のタイムフレームからVWAP (Volume Weighted Average Price) をトレードに入る,離脱するシグナルとして使用する. 閉じる価格がVWAPを超えると,前キャンドル値の低さでストップ損失を設定し,目標価格がエントリー価格より3ポイント高い状態でロングエントリを誘発する.逆に,閉じる価格がVWAPを下回ると,前キャンドル値の高さでストップ損失を設定し,目標価格がエントリー価格より3ポイント低い状態でショートエントリを誘発する.この戦略には出口条件が含まれていないため,反対信号が発生するまでトレードが開放される.
傾向を特定するためにクロスタイムフレームのVWAPデータを利用し,動的ストップ損失と固定ポイントの利益を引き上げを活用することで,戦略は動向市場を効果的に把握し,引き下げリスクを制御し,利益を間に合うように固定することができます.
この戦略は,動的ストップ損失と固定ポイントの取利益を使用してリスクを制御し利益をロックする一方で,トレンド決定とシグナルトリガーのためにクロスタイムフレームVWAPデータを活用する.これはシンプルで効果的な定量的な取引戦略である.トレンドフィルタリング,動的取利益,ポジションサイズ化,取引セッション選択の最適化により,戦略の強度と利益の可能性をさらに高めることができる.しかし,この戦略を実践する際には,より良いパフォーマンス戦略を達成するために,市場の特徴,取引コスト,パラメータ最適化に注意を払うべきである.
/*backtest start: 2024-03-06 00:00:00 end: 2024-03-07 00:00:00 period: 45m basePeriod: 5m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy('Pine Script Tutorial Example Strategy 1', overlay=true, initial_capital=1000, default_qty_value=100, default_qty_type=strategy.percent_of_equity) // fastEMA = ta.ema(close, 24) // slowEMA = ta.ema(close, 200) // Higher Time Frame float sl = na float tgt = na posSize = 1 vwap_1d = request.security(syminfo.tickerid, "1D", ta.vwap(close)) // plot(vwap_1d) // To avoid differences on historical and realtime bars, you can use this technique, which only returns a value from the higher timeframe on the bar after it completes: // indexHighTF = barstate.isrealtime ? 1 : 0 // indexCurrTF = barstate.isrealtime ? 0 : 1 // nonRepaintingVWAP = request.security(syminfo.tickerid, "1D", close[indexHighTF])[indexCurrTF] // plot(nonRepaintingVWAP, "Non-repainting VWAP") enterLong = ta.crossover(close, vwap_1d) exitLong = ta.crossunder(close, vwap_1d) enterShort = ta.crossunder(close, vwap_1d) exitShort = ta.crossover(close, vwap_1d) if enterLong sl := low[1]>vwap_1d ?low[1]:vwap_1d tgt:=close+3 strategy.entry("EL", strategy.long, qty=posSize) strategy.exit('exitEL', 'EL', stop=sl, limit=tgt) if enterShort sl := high[1]<vwap_1d ?high[1]:vwap_1d tgt := close-3 strategy.entry("ES", strategy.short, qty=posSize) strategy.exit('exitES', 'ES', stop=sl, limit=tgt) // if exitLong // strategy.close("EL") // if exitShort // strategy.close("ES") // goLongCondition1 = ta.crossover(close, vwap_1d) // timePeriod = time >= timestamp(syminfo.timezone, 2021, 01, 01, 0, 0) // notInTrade = strategy.position_size <= 0 // if goLongCondition1 and timePeriod and notInTrade // stopLoss = low[1] // takeProfit = close+3 // strategy.entry('long', strategy.long) // strategy.exit('exit', 'long', stop=stopLoss, limit=takeProfit) plot(close, color=color.new(#00c510, 0)) plot(vwap_1d, color=color.new(#f05619, 0)) plot(sl, color=color.new(#fbff00, 0)) plot(tgt, color=color.new(#00e1ff, 0))