
この戦略は,価格のATRの変動率を計算し,異なる周期のVWAP平均価格と組み合わせて,ロングポジションの入場と出場条件を設定し,株のトレンド追跡取引を実現する.
この策略は主に株式類製品のトレンド追跡に使用され,ATRの変動率を計算し,異なる周期のVWAP価格を組み合わせて,買入販売条件を設定し,トレンドの判断と追跡を実現する.この策略は柔軟で,長線と短線の間を切り替えることができ,中中長線トレンドを捕捉するのに適しています.
策略はATR指標を用いて価格の変動率を計算し,価格が変動率チャネルを突破したかどうかを組み合わせてトレンドの方向を判断する.また,異なる周期のVWAP価格を導入して,長短線トレンドの一致性を判断する.具体的論理は以下の通りである.
以上は戦略の核心的な論理である.ATRの波動率は短期的傾向を判断し,VWAPの価格は長期的傾向を判断し,両者はトレンドの一致性を判断し,取引信号を生成する.
この戦略は,ATR変動率とVWAPの二重判断によって,株式トレンドの追跡を可能にします.戦略の最適化スペースは大きく,パラメータを調整したり,他の技術指標の最適化シグナルを追加したりできます.全体的に,戦略の論理は明確で分かりやすく,安定したパフォーマンスを発揮し,中長期トレンドを追跡するのに適しています.
/*backtest
start: 2023-12-17 00:00:00
end: 2024-01-16 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/
// © exlux99
//@version=4
strategy(title="VWAP MTF STOCK STRATEGY", overlay=true )
// high^2 / 2 - low^2 -2
h=pow(high,2) / 2
l=pow(low,2) / 2
o=pow(open,2) /2
c=pow(close,2) /2
x=(h+l+o+c) / 4
y= sqrt(x)
source = y
useTrueRange = false
length = input(27, minval=1)
mult = input(0, step=0.1)
ma = sma(source, length)
range = useTrueRange ? tr : high - low
rangema = sma(range, length)
upper = ma + rangema * mult
lower = ma - rangema * mult
crossUpper = crossover(source, upper)
crossLower = crossunder(source, lower)
bprice = 0.0
bprice := crossUpper ? high+syminfo.mintick : nz(bprice[1])
sprice = 0.0
sprice := crossLower ? low -syminfo.mintick : nz(sprice[1])
crossBcond = false
crossBcond := crossUpper ? true
: na(crossBcond[1]) ? false : crossBcond[1]
crossScond = false
crossScond := crossLower ? true
: na(crossScond[1]) ? false : crossScond[1]
cancelBcond = crossBcond and (source < ma or high >= bprice )
cancelScond = crossScond and (source > ma or low <= sprice )
longOnly = true
fromDay = input(defval = 1, title = "From Day", minval = 1, maxval = 31)
fromMonth = input(defval = 1, title = "From Month", minval = 1, maxval = 12)
fromYear = input(defval = 2000, title = "From Year", minval = 1970)
//monday and session
// To Date Inputs
toDay = input(defval = 31, title = "To Day", minval = 1, maxval = 31)
toMonth = input(defval = 12, title = "To Month", minval = 1, maxval = 12)
toYear = input(defval = 2021, title = "To Year", minval = 1970)
startDate = timestamp(fromYear, fromMonth, fromDay, 00, 00)
finishDate = timestamp(toYear, toMonth, toDay, 00, 00)
time_cond = true
srcX = input(ohlc4)
t = time("W")
start = na(t[1]) or t > t[1]
sumSrc = srcX * volume
sumVol = volume
sumSrc := start ? sumSrc : sumSrc + sumSrc[1]
sumVol := start ? sumVol : sumVol + sumVol[1]
vwapW= sumSrc / sumVol
//crossUpper = crossover(source, upper)
//crossLower = crossunder(source, lower)
shortCondition = close < vwap and time_cond and (close < vwapW)
longCondition = close > vwap and time_cond and (close > vwapW)
if(longOnly and time_cond)
if (crossLower and close < vwapW )
strategy.close("long")
if (crossUpper and close>vwapW)
strategy.entry("long", strategy.long, stop=bprice)