Login Page - Create Account

Support Board


Date/Time: Wed, 14 May 2025 00:29:13 +0000



Post From: Trade Result -8998

[2024-08-20 19:01:59]
User431178 - Posts: 679
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