Tick based indicator

 

Hi All

i am looking for a tick based indicator that runs on MT5.

Maybe anybody knows and can tell me?

I would like to test out something.


Thank you!

 

Search online.

 

Any indicator is tick based. Renko for instance creates a chart from ticks. If you want to log ticks, add this to your OnCalculate:

MqlTick tick;
SymbolInfoTick(_Symbol,tick);
Print(tick.time," ",tick.bid);
Reason: