地味でも勝てるEA

EA制作の記録

3本の移動平均線システムにRSIを追加

f:id:systemcreation:20220113090110p:plain

全体的にそこまで悪くはないのですが、BUYポジションとSELLポジションのバランスが

 

少し偏っている。

 

できれば、BUYとSELLのポジションの比率と勝率が同じくらいが私的には望ましいです。

 

 

 

 

使用時間足 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
   );

 

iRSI(
   string       symbol,           // symbol
   int          timeframe,        // timeframe
   int          period,           // period
   int          applied_price,    // applied price
   int          shift             // shift
   );