この戦略は,高速移動平均値 (Fast MA) がスロー移動平均値 (Slow MA) を超えると買い信号を生成する.
小規模で一貫した利益を得るために 1%の利益を得る必要があります
この戦略は,明確なトレンドのあるトレンド市場でうまく機能し,中期上昇傾向を把握し,安定した利益を達成することができます.
この戦略は,移動平均の黄金十字に基づいています.移動平均は株式価格の中期トレンドを反映しています.短期MAが長期MAを超えると,短期上昇勢力が長期トレンドよりも強いことを示します.これは強力な購入信号です.
この戦略における速いMAは10日,遅いMAは30日である.これは合理的なトレンド動きを捕捉することができる.速いMAが遅いMAを超えると長い信号が起動する.
この戦略では,1%の取利益ポイントも設定しています.収益が1%に達すると,利益をロックします.これはトレンド逆転による損失を避けるのに役立ちます.
この戦略の強みとは,
全体的に見ると 戦略はかなり堅牢で トレンド市場では安定した利益を得ることができる.
考慮すべきリスクもいくつかあります.
これらのリスクに対処するには
この戦略を最適化する方法:
この戦略は典型的な移動平均クロスオーバーシステムである.高速および遅いMAを使用して中期トレンドを特定し,その過程で1%の利益を得ます.強みはシンプルさと安定した利益のための上昇トレンドに乗る能力を含む.弱点は複雑で不安定な市場への適応が悪いことです.より多くの指標とストップロスのメカニズムで最適化することで,戦略はより強力なパフォーマンスを達成することができます.
/*backtest start: 2023-01-01 00:00:00 end: 2023-06-15 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/ // © pleasantHead5366 //@version=4 strategy("1% Profit Strategy", overlay=true) // Input parameters fastLength = input(10, title="Fast MA Length") slowLength = input(30, title="Slow MA Length") profitPercentage = input(1, title="Profit Percentage") // Calculate moving averages fastMA = sma(close, fastLength) slowMA = sma(close, slowLength) // Plot moving averages on the chart plot(fastMA, color=color.blue, title="Fast MA") plot(slowMA, color=color.red, title="Slow MA") // Trading logic longCondition = crossover(fastMA, slowMA) if (longCondition) strategy.entry("Buy", strategy.long) // Close long position when profit reaches 1% if (strategy.position_size > 0) strategy.exit("Take Profit", from_entry="Buy", profit=profitPercentage / 100) // Plot Buy and Sell signals on the chart shortCondition = crossunder(fastMA, slowMA) if (shortCondition) strategy.entry("Sell", strategy.short)