Re: Prorealtime - help with programming indicator Quote: |
Originally Posted by DaxTrader Hi, I've been trying to programme a simple Inside bar indicator, which highlights inside bars on whatever time frame you are looking at.
So far, I can't make the programme accept the code when I validate it.
c1= high(1) < high(2)
c2= low(1) > low(2)
screener ( c1 and c2)
thanks in advance for any help  |
DT I havn't used the screener but I think the condition needs to be in [ ] the () is for a an indicator value or sort criteria like the current RSI value or something... i.e a magnitude. and is optional....
Also the low/high need [ ] brackets not ( ) ..... have fun(Not tested) Code:
c1= high[1] < high[2]
c2= low[1] > low[2]
screener[c1 and c2]( RSI[14](close) )
best check though
Sven
__________________
Can't get motiviated.
Last edited by SvenFoster; Dec 8, 2005 at 7:27am.
Reason: missed info
|