モバイルベガスチャンネルクロッシング戦略


作成日: 2024-01-02 10:53:06 最終変更日: 2024-01-02 10:53:06
コピー: 0 クリック数: 1205
1
フォロー
1621
フォロワー

モバイルベガスチャンネルクロッシング戦略

この戦略の核心思想は,EMA 36,143,169などの異なる周期の平均線に基づいて,株式の短期・中長期のトレンド方向を判断し,MACD指標と組み合わせて,買入シグナルを発信することである.具体的には,短期は,5・10日のEMAで判断し,中期は20・60日のEMAで判断し,長期は120・250日のEMAで判断し,短期のEMAが中期EMAを突破するとき,高く見下し,空いて見下し,MACDの空虚な指標と組み合わせて,買い買い時を判断することである.

ヴェガス・トンネル戦略の具体的原理:

  1. EMA36とEMA43は,赤色通路を構成する短期トレンド判断として使用されます.
  2. EMA144とEMA169を用いて中期トレンド判断を行い,緑の通路を形成する.
  3. 灰色の通路を構成するEMA576とEMA676を用いて長期トレンド判断を行う.
  4. 価格が各EMAの均等線に立つと,さらに買い信号を発信します. MACD指数と組み合わせて,0軸を上方突破します.
  5. 価格が各EMA平均線を下回ると空白を出し,MACD指数と併せて下方突破0軸で売り信号を発する.
  6. 横断のEMA平均線周期に応じて,短中長と3つの取引戦略に分けられ,それぞれ異なる保有周期に対応する.

この戦略の利点は以下の通りです.

  1. 短期,中期,長期の3つのチャネルを組み合わせてトレンドの方向を判断すると,比較的安定している.
  2. ビデオの動画は,Vegasのチャンネルがはっきりと直感的で,トレンドを簡単に判断できる.
  3. MACD指数と組み合わせると,買い物や売却のタイミングがよくなる.
  4. この3つの戦略は,より柔軟な操作を可能にします.

この戦略の主なリスクは

  1. 株価が急激に波動すると,EMA平均線が遅滞して判断ミスが起こる可能性が高い.
  2. 3通路の判断が一致しない場合,誤った操作の危険性があります.
  3. 時計図操作には強い心理的耐性が必要である.

どう対処するか?

  1. EMAの平均線周期は,現在の市場特性をよりよくマッチするように,適当に調整することができます.
  2. 取引前の持仓比率調整,単発損失を制御する.

この戦略の最適化空間は

  1. ヴェガスの経路の傾向判断は不十分であり,ブリン経路の補助判断を導入することができる.
  2. MACD指標は区間振動の動きに効果が悪いので,KD,RSIなどの指標で置き換えることができます.
  3. クローズアップ価格が重要なEMAを下回ると,積極的にストップするなど,ストップ・ストラトジーを追加する.
  4. A株の急落の影響は大きいので,ETFの空調をカバーすることを考えることができる.
ストラテジーソースコード
/*backtest
start: 2022-12-26 00:00:00
end: 2024-01-01 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=4

strategy("Vegas Tunnel strategy", overlay=true)
//-------------------------------------------
//-------------------------------------------
// Inputs
useCurrentRes = input(true, title="Use Current Chart Resolution?")
resCustom = input(title="Use Different Timeframe? Uncheck Box Above", type=input.resolution, defval="D")
//tfSet = input(title = "Time Frame", options=["Current","120", "240", "D", "W"], defval="D")
tfSet = useCurrentRes ? timeframe.period : resCustom
maPeriods2 = input(12, "12 EMA")
maPeriods6 = input(240, "240 SMA")
BBlength = input(20, title="BB Length", minval=1)
BBsrc = input(close, title="BB Source")
mult = input(2.0, minval=0.001, maxval=50, title="BB StdDev")
sm2 = security(syminfo.tickerid, tfSet, ema(close, maPeriods2))
sm6 = security(syminfo.tickerid, tfSet, sma(close, maPeriods6))
p2 = plot(sm2, color=color.green, transp=30,  linewidth=2, title="SMA2")
p6 = plot(sm6, color=color.white, transp=30,  linewidth=2, title="SMA6")
//BB
basis = sma(BBsrc, BBlength)
dev = mult * stdev(BBsrc, BBlength)
upper = basis + dev
lower = basis - dev
offset = input(0, "BB Offset", type = input.integer, minval = -500, maxval = 500)
//plot(basis, "Basis", color=color.blue,linewidth, offset = offset)
pBB1 = plot(upper, "Upper", color=color.blue, offset = offset)
pBB2= plot(lower, "Lower", color=color.blue, offset = offset)

//MACD
fast_ma = ema(close, 48)
slow_ma = ema(close, 56)
macd = fast_ma - slow_ma

//vagas隧道
f1=ema(close, 36)
f2=ema(close, 43)
f3=ema(close, 144)
f4=ema(close, 169)
f5=ema(close, 576)
f6=ema(close, 676)
f7=ema(close,2304)
z1=plot(f1,color=color.red, title="ema36",transp=100)
z2=plot(f2,color=color.red, title="ema43",transp=100)
z3=plot(f3,color=color.green, title="ema144",transp=100)
z4=plot(f4,color=color.green, title="ema169",transp=100)
z5=plot(f5,color=color.white, title="ema576",transp=100)
z6=plot(f6,color=color.white, title="ema676",transp=100)
fill(z1, z2, color=color.red,transp=60)
fill(z3, z4, color=color.green,transp=60)
fill(z5, z6, color=color.gray,transp=60)

// Make input options that configure backtest date range
startDate = input(title="Start Date", type=input.integer,
     defval=1, minval=1, maxval=31)
startMonth = input(title="Start Month", type=input.integer,
     defval=1, minval=1, maxval=12)
startYear = input(title="Start Year", type=input.integer,
     defval=2018, minval=1800, maxval=2100)
endDate = input(title="End Date", type=input.integer,
     defval=1, minval=1, maxval=31)
endMonth = input(title="End Month", type=input.integer,
     defval=11, minval=1, maxval=12)
endYear = input(title="End Year", type=input.integer,
     defval=2030, minval=1800, maxval=2100)
// Look if the close time of the current bar
// falls inside the date range
inDateRange =  true

//波段多
if (inDateRange and crossunder(f3,f1))// 
    strategy.entry("buy", strategy.long,1, when=macd>0, comment = "買Long-term")
buyclose=crossunder(f3,f5) 
strategy.close("buy", when = buyclose, comment = "關Long-term")
//多策略1
if (inDateRange and crossover(low , f3) and macd>0 and f3>f6)
    strategy.entry("buy1", strategy.long,100, comment = "買Mid-term")
buyclose1=crossunder(close,upper*0.999) 
if (macd<0 or f3<f6)
    strategy.close("buy1", comment = "關Mid-term")
//strategy.close("buy1",when=cross(basis,close), comment = "關M",qty_percent=50)
strategy.close("buy1", when = buyclose1, comment = "關Mid-term",qty_percent=100)
//多策略3
if (inDateRange and  (macd>0) and crossunder(low,f1) and f1>f4) // 
    strategy.entry("buy3", strategy.long,1, comment = "買Short-term")
buyclose3=crossunder(close,upper*0.999)
if (macd<0 or f1<f4)
    strategy.close("buy3", comment = "關Short-term")
strategy.close("buy3", when = buyclose3, comment = "關Short-term")
//多策略4
if (inDateRange and  (macd>0) and crossunder(low,f5) and f4>f5) // 
    strategy.entry("buy4", strategy.long,1, comment = "買Long-term")
buyclose4=crossunder(close,upper*0.999)
if (macd<0 or f4<f6)
    strategy.close("buy4", comment = "關Long-term")
strategy.close("buy4", when = buyclose4, comment = "關Long-term")
    
//空策略1
if (inDateRange and  (macd<0) and crossunder(high,f1) and f1<f3 and f3<f6) // 
    strategy.entry("sell1", strategy.short,1, comment = "空Short-term")
sellclose1=crossunder(lower*0.999,close)
if (macd>0 or f1>f4)
    strategy.close("sell1", comment = "關空Short-term")
strategy.close("sell1", when = sellclose1, comment = "關空Short-term")
//空策略2
if (inDateRange and  (macd<0) and crossunder(high,f4) and f4<f6) // 
    strategy.entry("sell2", strategy.short,1, comment = "空Mid-term")
sellclose2=crossunder(lower,close)
if (macd>0 or f4>f6)
    strategy.close("sell2", comment = "關空Mid-term")
strategy.close("sell2", when = sellclose2, comment = "關Mid-term")
//空策略3
if (inDateRange and (macd<0) and crossunder(high,f6)) // 
    strategy.entry("sell3", strategy.short,1, comment = "空Long-term")
sellclose3=crossunder(lower,close)
if (macd>0 or f6>f7)
    strategy.close("sell3", comment = "關空Long-term")
strategy.close("sell3", when = sellclose3, comment = "關空Long-term")