この戦略は,チャイキン・ボラティリティ・インディケーターに基づいて短期間の取引システムを設計し,短期間の市場変動を把握する.主なアイデアは,チャイキン・ボラティリティ・インディケーターが指定された
チャイキン波動指標は,証券の最高価格と最低価格の差を測定することによって波動性を定量化します.高価格と低価格の間の範囲が拡大すると,波動性が上昇することを示します.
この戦略の具体的な論理は
この戦略の利点は以下の通りです.
リスクもあります:
解決策:
戦略は以下によって改善できます.
この戦略は,短期取引に適したシンプルで明確な論理を持っています.柔軟なパラメータは,必要に応じて調整できます.過剰なフィッティングと高い取引頻度のリスクがあります.さらなる最適化は,より安定したパフォーマンスのために戦略をより堅牢にすることができます.
/*backtest start: 2023-11-20 00:00:00 end: 2023-12-04 00:00:00 period: 3h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version = 2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 01/12/2016 // Chaikin's Volatility indicator compares the spread between a security's // high and low prices. It quantifies volatility as a widening of the range // between the high and the low price. // You can use in the xPrice1 and xPrice2 any series: Open, High, Low, Close, HL2, // HLC3, OHLC4 and ect... // You can change long to short in the Input Settings // Please, use it only for learning or paper trading. Do not for real trading. /////////////////////////////////////////////////////////// strategy(title="Chaikin Volatility Strategy Backtest") Length = input(10, minval=1) ROCLength = input(12, minval=1) Trigger = input(0, minval=1) reverse = input(false, title="Trade reverse") hline(0, color=purple, linestyle=line) hline(Trigger, color=red, linestyle=line) xPrice1 = high xPrice2 = low xPrice = xPrice1 - xPrice2 xROC_EMA = roc(ema(xPrice, Length), ROCLength) pos = iff(xROC_EMA < Trigger, 1, iff(xROC_EMA > Trigger, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(pos == -1 ? red: pos == 1 ? green : blue ) plot(xROC_EMA, color=blue, title="Chaikin Volatility Strategy")