Hello
Have a code that recognises an entry point when met but need it to only monitor it from when the code becomes active.
Ie if i turn the code on at 110300 i do not want it to recognise the entry point before that.
I have Starttime=Opentime but that seems to refer to the market need starttime= when code is active time
any help appreciated.
Use:
IF OpenTime > 110300 THEN
EntryPoint = .......
ENDIF
you may replace OpenTime (time when a candle opens) with Time (time when a candle closes).