Support Board
Date/Time: Fri, 23 May 2025 22:07:34 +0000
Post From: ASCIL Different OrderIDs for Same Order
[2023-08-28 21:07:40] |
ForgivingComputers.com - Posts: 1058 |
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); |