Have a question about
Position.AvgPrice
I have a Strategy which buys multiple orders, then needs to determine the average price of all orders.
In regards to handling multiple orders, I enable with:
EntriesPerDirection = 1;
EntryHandling = EntryHandling.UniqueEntries;
BUT,
The Position.AvgPrice does not seem to average the price of multiple positions yet, but instead appears to reference the last position's price.
Is there any way to average and reference the position price of multiple open positions ?

Comment