双重ハルMMA判断の取引基準戦略

作者: リン・ハーンチャオチャン, 日時: 2023-09-13 13:48:30
タグ:

この戦略は,デュアルハル移動平均値と日々のキャンドル比較の組み合わせに基づいて取引し,ロング/ショート条件に対する判断の値を使用します.また,リスク管理のために固定ストップ・ロスト/テイク・プロフィートを使用します.

戦略論理:

  1. 双重HullMAsを計算し,現在の値と前期を比較する.

  2. 日々の近差変動率を計算し,長/短判断の値を設定する.

  3. 低速MAが低速MAを超え,日替わりが限界を超えるとロングになります.

  4. 固定ストップ・ロスを使って 利益率を取ります

  5. オープンポジションの最大限を設定することもできます

利点:

  1. ダブルハルマにより精度が向上 日々の変更により偏見が確認される

  2. 小規模な反トレンドの動きに 影響されないようにします

  3. SL/TPは利益とリスクの管理を助けます

リスク:

  1. 悪い限界設定は 機会を逃す可能性があります 慎重なテストが必要です

  2. 固定 SL/TP 柔軟に調整できないため,不適切な設定のリスクがあります.

  3. ハルMMAと日々の変更遅延の両方.

概要すると,リスク制御によるこの二重指標判断システムは,安定性を一定程度向上させることができる.しかし,理想的な構成を見つけるには依然として最適化が必要である.


/*backtest
start: 2022-09-06 00:00:00
end: 2023-02-21 00:00:00
period: 5d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=2
//                                                        Hull_MA_cross & Daily_Candle_cross combination with TP$ & SL$ setting
//                                                              (new script reducing effect of repaint on results)
//
strategy("Decision Threshold", shorttitle="DT", overlay=true, default_qty_type=strategy.percent_of_equity, max_bars_back=720, default_qty_value=100, calc_on_order_fills= true, calc_on_every_tick=true, pyramiding=0)
keh=input(title="Double HullMA",defval=14, minval=1)
dt = input(defval=0.0010, title="Decision Threshold",  step=0.0001)
SL = input(defval=-50000.00, title="Stop Loss in $",  step=1)
TP = input(defval=100000.00, title="Target Point in $", step=1)
p=input(ohlc4)
ot=1
n2ma=2*wma(p,round(keh/2))
nma=wma(p,keh)
diff=n2ma-nma
sqn=round(sqrt(keh))
n2ma1=2*wma(p[1],round(keh/2))
nma1=wma(p[1],keh)
diff1=n2ma1-nma1
sqn1=round(sqrt(keh))
n1=wma(diff,sqn)
n2=wma(diff1,sqn)
b=n1>n2?lime:red
c=n1>n2?green:red
d=n1>n2?red:green
a1=plot(n1,color=c)
a2=plot(n2,color=c)
plot(cross(n1, n2) ? n1 : na, style = circles, color=b, linewidth = 4)
plot(cross(n1, n2) ? n1 : na, style = line, color=d, linewidth = 4)
confidence=(security(syminfo.tickerid, 'D', p)-security(syminfo.tickerid, 'D', p[1]))/security(syminfo.tickerid, 'D', p[1])
closelong = n1<n2 and p<n2 and confidence<dt or strategy.openprofit<SL or strategy.openprofit>TP
if (closelong)
    strategy.close("Long")
closeshort = n1>n2 and p>n2 and confidence>dt or strategy.openprofit<SL or strategy.openprofit>TP
if (closeshort)
    strategy.close("Short")
longCondition = n1>n2 and strategy.opentrades<ot and confidence>dt and p>n2
if (longCondition)
    strategy.entry("Long",strategy.long)
shortCondition = n1<n2 and strategy.opentrades<ot and confidence<dt and p<n2 
if (shortCondition)
    strategy.entry("Short",strategy.short)

もっと