Originally posted by mktman
Weird you can set alert for 52 week high but not id high.
Dont make sense.
mktman
Originally posted by TraderMaceo
Try this as a function:
Vars: BarsBack (00),
Loop (00),
HiHi (00) ;
For Loop = 1 to 53 begin
If H > H [Loop] then Hihi = H else HiHi = H [Loop] ;
end ;
if C > HiHi then Alert("New High")
51 Is a 52 period high (excluding current bar). You can use a higher number you've just got to remember to increase your MaxBarsBack buffer.
This also assumes this is in an Indicator, ShowMe, PaintBar, Activity Bar, or Probability Map.
Originally posted by mktman
Kymar:
Thought I'd let you know there is a way to be alerted to id highs on the quotes page. In the "Last" column I set the alert input to daily high(one word). Then uncheck disable alert once hit. Works fine.
Just touch time to figure out.
mktman
