Support Board
Date/Time: Mon, 15 Sep 2025 10:11:38 +0000
Post From: Trade Result -8998
[2024-08-20 19:01:59] |
User431178 - Posts: 775 |
Check for sc.IsFullRecalculation, and if so do not perform the trading action. ACSIL Interface Members - Variables and Arrays: sc.IsFullRecalculation As you are using autolooping (inferred by the use of sc.Index), the code below is not doing anything useful. if (sc.UpdateStartIndex==0) return; ACSIL Interface Members - Variables and Arrays: sc.UpdateStartIndex Instead, you could use if (sc.IsFullRecalculation) return; Date Time Of Last Edit: 2024-08-20 19:02:43
|