Hey all
Please can anyone show me or explain how to add ( “CLOSE IS AT NEW HIGH”) to a screener using only assisted programming. ?
Many thanks
Adam
You can select that current CLOSE > CLOSE[1] (which is the previous one) or that of any given candle.
You can’t tell ProOrder Assistant to add a condition so that the current CLOSE is greater than, say, the 10 previous candles. You must do it manually.
Roberto
Hi
Thanks for reply, thats really good to know.
In assissted proscan i can select close > close (previous) (10) periods ago.
Is that not the same ?
In ProScreener, ProBuilder and ProOrder, to find if the current CLOSE is a the new highest CLOSE within, say, the last 20 bars, you have to manually write:
NewHigh = (close = highest[20](close))
NewHigh will be set to TRUE if it’s the highest CLOSE, FALSE otherwise.