Hi,

I just noticed that the calculation of tick-size in Zorro.mq4 is possibly incorrect:

arr[3] = MarketInfo(asset,MODE_POINT) * Factor; // pip

correct:
arr[3] = MarketInfo(asset,MODE_TICKSIZE) * Factor; // pip

For currencies it gives almost the same value, but for indices the values are different on my broker.

For example the tick-size with MODE_POINT on SPX500 is 0.01 (which is incorrect) and with MODE_TICKSIZE it's 0.25 (which is correct).

This affects also the Assets.dta file and gives me a wrong simulation.