Login Page - Create Account

Support Board


Date/Time: Sun, 23 Feb 2025 18:50:52 +0000



Post From: Signal calculation with in the bar

[2021-02-17 15:40:04]
ForgivingComputers.com - Posts: 1012
This if block at line 268 causes the calculations that follow to wait until the bar has closed:

if(sc.GetBarHasClosedStatus() == BHCS_BAR_HAS_CLOSED)

You can try changing it to
if(true)
and see what happens.