Does anyone have a currency strength Expert Adviser with mq4 file. I tried to find one for a sample, just could not find mq4, jusr want to see how to rematch back the seperated pair and trigger the trade. Thanks for the reply
Mladen once told me that, it is the forward transaction that counts not by back testing. I took his advice and since then i have never back test my indicators or EAs. No point since back testing could not be perform on strength indicator. This is ...
Mt4 is yet the best program because of its community in sharing. It also has limitation in performing an EA cause of the more complex forex trading due to growing liquidity now upto 6T the more computation it requires. There are a few very good ...
Hi All, datetime TimeArray[]; int i, y=0, counted_bars=IndicatorCounted(); ArrayCopySeries(TimeArray,MODE_TIME,Symbol(),TimeFrame); for(i=0, y=0; i<=Bars; i++) { if (Time[i] < TimeArray[y]) y++; if (counted_bars > 0 && y>0) break; The best solution ...
Used this to display only 2 decimal value.... string L21_H1 = DoubleToStr(L21_H1_0, 2); Used this to sum upto 2 decimal value.... showing the rest (6) of the decimal in 0 (zero) double L21_H1 = NormalizeDouble(L21_H1_0, 2);