I'm running a fairly simple strategy trading EURUSD:
if(condition A) EnterLong();
if(not condition A) ExitLong();
if(condition B) EnterShort();
if(not condition B) ExitShort();
My understanding is if EntriesPerDirection=1 and EntryHandling=EntryHandling.AllEntries and DefaultQuantity=10000, that I always have only 10000 contracts at a certain amount of time.
But in the chart window I see the following comments attached to the entry/exit points:
1. "Buy 10000 @ 1.0637'6"
2. "Sell 10000 @ 1.0632'0", "Close position 10000 @ 1.0632'0", "Sell short 10000 @ 1.0632'0"
3. "Close position 20000 @ 1.0628'7"
My question: why 20000 in the last trade? What do I miss here? Always expect to have only 10000 contracts in the market!
Thanks for your help
Frank

Comment