if(VOLUME_TICK<100) // If The Tick Volume Is Less Than 100 Then Terminate OnTimer() Function

 

if(VOLUME_TICK<100) // If The Tick Volume Is Less Than 100 Then Terminate OnTimer() Function

return;



What needs to be added or changed to make this "if" work correctly?

 
odinsmith4: What needs to be added or changed to make this "if" work correctly?

A function call to get the current bar's tick volume. Perhaps you should read the manual.

 

do you search for something like this

int volumenreal = iVolumes (_Symbol, PERIOD_CURRENT, VOLUME_REAL);

int  volumentics = iVolumes (_Symbol, PERIOD_CURRENT, VOLUME_TICK);