Support Board
Date/Time: Thu, 16 Oct 2025 21:27:35 +0000
Post From: ASCIL Different OrderIDs for Same Order
[2023-08-28 21:07:40] |
ForgivingComputers.com - Posts: 1148 |
You want your study to remember the OrderIDs from previous passes through the study function. OrderIDs should not be declared as int, but as Persistent Variables. int& LongOrderID = sc.GetPersistentInt(0);
int& ShortOrderID = sc.GetPersistentInt(1); |