Hello All,
I started coding today and I am from a noncomputer background. I wanted to test a few strategies that I have developed over the past one month. Will be really grateful for any help provided.
I needed to find code for this condition
Maximum of previous bullish candle<close of following bull candle
what I did was,
SET A = MAX(CLOSE,2)
SET B = REF(CLOSE,1)
SET B<SET A
But it is not working.
EDIT1:- GAVE another try
REF(HIGH,2)< REF(CLOSE,1)
Still showing an error
Thank you very much In advance it self.