Support Board
Date/Time: Wed, 27 Nov 2024 10:25:13 +0000
Post From: ASCIL Different OrderIDs for Same Order
[2023-08-28 21:07:40] |
ForgivingComputers.com - Posts: 960 |
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); |