Hello
At first thanks so much for all the information you offer.
It´s possible to program a signal, and later long position be executed when the market drops 50 points of the close of that signal?
For example
indicator1=RSI[5](close)
signal= indicator < 30
//buy if close < signalprice - 50 //
Thanks
Yes
If close < signal - 50 * pipsize then
Buy......
Endif
You may also use pending orders:
Buy 1 contract at signal - 50 * pipsize limit
but you will have to place it again, if not entered, because pending orders expire after one bar.
SIGNAL must contain a price, not a logical value
if indicator1 > 30 then
signal = close
endif