この戦略は,持続的なモメンタム期間に持続的な移動平均上昇傾向を観察することによって,牛走のモメンタムを継続的に走ることを目指す.これは上向きのモメンタムを捕捉することに焦点を当てたトレンドフォロー戦略です.
戦略論理:
価格動向を反映する重度の移動平均を計算する.
負債の負債は,負債の負債の負債と負債の負債の負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債と負債の負債の負債と負
順番4日間,重度の移動平均値が下がると,ロングを退場する.
短期的な逆転をフィルタリングします
最大ストップ損失を設定して最大日当たりの損失を制限する.
利点:
上向きの勢いを追跡することで 熱いトレンドを把握できます
持続性フィルタは 短い固化をスキップします
最大ストップ損失は尾のリスクを防ぎます
リスク:
継続的な上昇傾向の後 引き戻し損失に制限はありません
深い修正は大きな損失をもたらします.
幅が大きすぎるストップは 大きすぎる損失を伴うリスクをもたらす.
要するに,この戦略は,持続的な上昇傾向を特定し,ホットトレンドから利益を得て,勢いを維持する.しかし,深い引き下げリスクは残っており,調整されたストップと慎重なリスク管理が必要です.
/*backtest start: 2023-01-01 00:00:00 end: 2023-09-11 00:00:00 period: 3d basePeriod: 1d 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/ // © SoftKill21 //@version=4 // strategy("My Script", initial_capital=1000, default_qty_type=strategy.percent_of_equity, default_qty_value=100, commission_type=strategy.commission.percent , commission_value=0.1 ) var candela = 0.0 candela := (high+low+open+close)/4 long = candela > candela[1] and candela[1] > candela[2] and candela[2] > candela[3] and candela[3] > candela[4] and candela[4] > candela[5] short = candela< candela[1] and candela[1] < candela[2] and candela[2] < candela[3] and candela[3] < candela[4] //and candela[4] < candela[5] plot(candela, color=long? color.green : short? color.red : color.white ,linewidth=4) strategy.entry("long",1,when=long) //strategy.entry('short',0,when=short) strategy.close("long", when = short) risk= input(25) // strategy.risk.max_intraday_loss(risk, strategy.percent_of_equity) //strategy.close("short", when = not long or short)