Is there a way to change the EFS fill price with my actual broker fill price for an order?
Ex.
Strategy.doLong("LONG ENTRY-B", Strategy.CLOSE, Strategy.THISBAR);
Strategy.doSell("LongExit Stop", Strategy.STOP, Strategy.THISBAR, Strategy.ALL, system_sl);
So, suppose my broker fills me at 900.50, but EFS fills me at 899.50. Assuming my EFS program has the broker fill info, how would I change the EFS fill of 899.50 to 900.50 ?
Ex.
Strategy.doLong("LONG ENTRY-B", Strategy.CLOSE, Strategy.THISBAR);
Strategy.doSell("LongExit Stop", Strategy.STOP, Strategy.THISBAR, Strategy.ALL, system_sl);
So, suppose my broker fills me at 900.50, but EFS fills me at 899.50. Assuming my EFS program has the broker fill info, how would I change the EFS fill of 899.50 to 900.50 ?
Comment