Login Page - Create Account

Support Board


Date/Time: Sat, 23 Nov 2024 14:57:05 +0000



Post From: Trade Result -8998

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