Support Board
Date/Time: Mon, 22 Jun 2026 12:00:43 +0000
Post From: ASCIL Different OrderIDs for Same Order
| [2023-08-28 21:07:40] |
| ForgivingComputers.com - Posts: 1227 |
|
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); |
