Common Issues

First, try to get it to trade with default settings with a single indicator. For most of the buffer-based indicators, EA should start making trades if you simply update the EA name and buffer numbers for buy and sell signals. Later, you can try adding more indicators and advanced settings.

Common Mistakes in Indicator Automater Testing:

>>The indicator name is mistyped – always copy the name from the indicator file (without .exe4/5)

>>The indicator is located in a subfolder – in this case, you need to provide the folder path like Market/Indicator_Name

>>Indicator repaints or paints the signal on a later candle than the immediately completed candle – by default, Automater looks at the immediately completed candle for signals. You can increase this candle ID under setting 8. For instance, you can make it 2 or more depending on your indicator.

>>The indicator is an object-based indicator rather than a buffer-based indicator – If your indicator is a buffer-based one, you should be able to change the colors under the Colors tab under the Indicator settings (not under the Inputs tab). If your indicator is an object-based indicator, then you need to change the settings accordingly as per this manual.

>>You are using custom indicator settings – for buffer-based indicators, you can only use the default settings of your indicator while for object-based indicators, you can use any settings. Make sure you use default settings if it is a buffer-based indicator.

>>Your indicator needs some kind of license code to be entered under settings – buffer-based indicators can not be used in this case but object-based indicators can still be used.

>>Your indicator’s both buy and sell buffer numbers are the same (this could happen in MT5 indicators) – buffer-based indicators can not be used in this case but object-based indicators can still be used.

Common Issues