Quote from ABDI:
hi
i wonder if we can make the main function of the EA, int start() faster than what it's now
cose i have an EA for counting ticks.....but it some time lost some ticks and didnt record it
hope i can find a solution
the EA is attached
.
Also, how do you test this EA anyway? [/B]
The problem is in your EA code. Your ea only executes on new tick in the pair you have the EA is attached to. Then it reads the last tick in ALL the pairs you are interested in. If the last tick is different from the previous tick in that pair you write it to file. The problem is that if there were more than one tick in the pairs the EA is not attached to, those ticks will be missed.Quote from ABDI:
i wonder if we can make the main function of the EA, int start() faster than what it's now
.....but it some time lost some ticks and didnt record it