この戦略は,変動が低いときと高いときの資産購入の違いを研究することを目的としています.モード入力変数を変更することで,低波動期または高波動期間に購入するかどうかを選択することができます.
この戦略は,ATRとSMAを計算することによって波動性を決定する.具体的には,ATRのSMAを計算し,その後ATRとSMAの比率を計算する.この比率がユーザー定義の
ユーザが選択したモードに応じて,ストラテジーは波動性が高く,または低いときに購入信号を生成する.一度購入すると,ストラテジーは,sellAfterNBarsLengthによって定義された数つのバーで保持され,その後ポジションを閉じる.
この戦略の主な利点は以下の通りです.
この戦略の主なリスクは,
上記のリスクは,パラメータを調整し,異なる変動レベルからの購入を組み合わせることで軽減できる.
この戦略は,次の方法でさらに最適化できます.
この戦略は,低波動性購入戦略と高波動性購入戦略のパフォーマンスを効果的に比較することができます.SMAを使用してATRをスムーズにし,波動性レベルに基づいて取引信号を生成します. 戦略はパラメータ調節と最適化条件によって改善できます. 全体的に,この戦略は波動性ベースの戦略の研究のための効果的なツールを提供します.
/*backtest start: 2023-01-01 00:00:00 end: 2024-01-07 00:00:00 period: 1d basePeriod: 1h 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/ // © I11L //@version=5 strategy("I11L - Better Buy Low Volatility or High Volatility?", overlay=false) mode = input.string("Buy low Volatility",options = ["Buy low Volatility","Buy high Volatility"]) volatilityTargetRatio = input.float(1,minval = 0, maxval = 100,step=0.1, tooltip="1 equals the average atr for the security, a lower value means that the volatility is lower") atrLength = input.int(14) atr = ta.atr(atrLength) / close avg_atr = ta.sma(atr,atrLength*5) ratio = atr / avg_atr sellAfterNBarsLength = input.int(5, step=5, minval=0) var holdingBarsCounter = 0 if(strategy.opentrades > 0) holdingBarsCounter := holdingBarsCounter + 1 isBuy = false if(mode == "Buy low Volatility") isBuy := ratio < volatilityTargetRatio else isBuy := ratio > volatilityTargetRatio isClose = holdingBarsCounter > sellAfterNBarsLength if(isBuy) strategy.entry("Buy",strategy.long) if(isClose) holdingBarsCounter := 0 strategy.exit("Close",limit=close) plot(ratio, color=isBuy[1] ? color.green : isClose[1] ? color.red : color.white) plot(1, color=color.white)