Is it possible to change the CurrentOHL indicator such that it will give a visual and/or audible alert when price is a certain # of ticks from the high or low? I.e. if price = 6 ticks below current high do something and if price is 6 ticks above current low do something.
More importantly is it possible to do the same thing but like this: if new high is made and then price moves below this new high by 6 ticks do something and if new low is made and then price moves above that low 6 ticks, do something.
Again having no experience with scripting, is this a function of manipulating the commands of
if (ShowHigh)...
!PlotCurrentValue...
else for (int idx = 0;...etc etc??
Where can I find the commands for the functions to tell NT IF a new high is made... THEN do something?
or IF price makes new high DO something else do NOTHING.
Sorry for the complicated question I'm struggling to get a handle on C#
Thanks everyone.

Comment