Support Board
Date/Time: Sat, 12 Jul 2025 10:06:44 +0000
Post From: Finding Fill Price for a manual placed trade
[2017-06-30 21:16:31] |
Joel Wisdo - Posts: 15 |
To my knowledge the following code should return the price of the current trade s_ACSTrade OrderEntry; int Trade = sc.GetTradeListSize(); for (int i = 0; i < Trade; i++) { if (sc.GetTradeListEntry(i, OrderEntry)) { CurrentPrice = OrderEntry.AverageEntryPrice; } } |