地味でも勝てるEA

EA制作の記録

長期GMMAにストキャスティクスを追加したシステム

今回は長期GMMAにストキャスティクスを追加してみようと思います。

 

では、早速結果を見ていきましょう。

 

f:id:systemcreation:20220116234056p:plain

PF1.17 ドローダウン8%程度 BUY SELLのポジション比率も同じくらい

 

勝率もBUY SELLともに似たようなところに落ち着いたと思われます。

 

短期GMMAに比べ多少良いところに着地したように思われます。

 

ドローダウンが10%以下なところが非常によいです。

 

もしかしたらRSIのときも設定を緩くすればよい結果になったのかもしれませんが、

 

現時点ではパラメーターの設定は極力控えて、まずは初期設定での検証を

 

進めていきたいと思います。

 

次回は長期と短期GMMA両方にストキャスティクスを追加してみようと思います。

 

使用時間足 1時間足

 

使用通貨ペア EURUSD

 

使用関数  iMA(
   string       symbol,           // symbol
   int          timeframe,        // timeframe
   int          ma_period,        // MA averaging period
   int          ma_shift,         // MA shift
   int          ma_method,        // averaging method
   int          applied_price,    // applied price
   int          shift             // shift
   );

 

double  iStochastic(
   string       symbol,           // symbol
   int          timeframe,        // timeframe
   int          Kperiod,          // K line period
   int          Dperiod,          // D line period
   int          slowing,          // slowing
   int          method,           // averaging method
   int          price_field,      // price (Low/High or Close/Close)
   int          mode,             // line index
   int          shift             // shift
   );