Basically I am just trying to close out a short position and open a long position. My statements are:
_exit = ExitShort();
_entry = EnterLong(contracts);
contracts = 1 here. Do I need to delay between these 2 statements (is that possible?). This works when backtesting but not running as a strategy running in real time.

Comment