Darts are better. Notifications, including emails, are not applicable. Just fake signals. Correction - arrows are not usable in the backtest.i already check the indicator code ... and the code have an error "zero divided"
error code :
double signalVal = (momVal / (atrVal + adxVal)) - subtractFromSignalVal; // -2
double indiVal = ((atrVal + cciVal + rsiVal) / adxVal) - subtractFromIndiVal; // -1
code with red color should not be the same as zero
when you put the indicator on chart it will look good coz there is no zero divided
but if u run it on chart there is zero value coz mt4 calculate it.
its done when those 2 line change with this ..
double signalVal = (atrVal + adxVal)!= 0 ? (momVal / (atrVal + adxVal)) - subtractFromSignalVal : 0; // -2
double indiVal = (adxVal) != 0 ? ((atrVal + cciVal + rsiVal) / adxVal) - subtractFromIndiVal : 0; // -1
But this indicator badly repaint
just test it with strategy tester and compare it with when you drop this indicator directly on chart , not just late arrow but it give super badly repaint arrow
Last edited:
