Hi There, I want to do the following as an example:
Buy FTSE (Mar-20) when FTSE Cash is 7000 and Close the contract (FTSE Mar 20) when FTSE Cash is 7200. How Can I do that please?
Please use the correct support forum. I moved it to the ProOrder support as it is related to a strategy.
Try this if you want to enter at market:
IF close >= 7000 THEN
BUY AT AMRKET
ENDIF
IF close >= 7200 THEN
SELL AT MARKET
ENDIF
or this one to use pending orders (they only last one bar and must be placed again, if needed):
BUY 1 CONTRACT AT 7000 STOP //or LIMIT if current price is higher
and, once you are OnMarket, you can exit with:
SELL AT 7200 LIMIT
Thank you…Will try as I am Buying FTSE (Mar-20) when FTSE Cash is 7000. Thank you.