> What do you mean by "day ranger"? I am looking for stocks with not
too much volatility. Maybe this is it?
-----------------------------------------------
Day Rangers are the ones with a lot of volatility. You could scan for
low ATRPs (ATR divided by the last closing price).
-------------------------------------------------
I tried to include a variable in your code, but for some reason
something is wrong. Instead of ATR(10) or ATR(15) I wanted to
determine the ATR in function of the number from the HHVBars.
So here is what I did:
bar = HHVBars( C, 20 );
ATR10 = ATR(bar);
Does not work, unfortunately...
------------------------------------------------
I think bar is a value of the Highest Closing Price over the last 20
periods. Not sure how to count the number of bars since but do
vaguely remember seeing some code on how to do it.
Hopefully some kind soul can come to the rescue