Support Board
Date/Time: Thu, 03 Jul 2025 05:56:12 +0000
Post From: ASCIL Different OrderIDs for Same Order
[2023-08-28 21:07:40] |
ForgivingComputers.com - Posts: 1076 |
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); |