Login Page - Create Account

Support Board


Date/Time: Mon, 24 Feb 2025 01:37:59 +0000



Post From: turning a subgraph into a system error

[2021-02-23 12:50:43]
ForgivingComputers.com - Posts: 1012
Far better to just reference the data 1 bar back then you know it has closed.
Better in what way?


Using
if (Input_EvaluateOnBarCloseOnly.GetYesNo()
&& sc.GetBarHasClosedStatus() == BHCS_BAR_HAS_NOT_CLOSED)
{
return;
}
will only process the steps once per bar. Using
[sc.Index - 1]
will process the steps multiple times per bar, and get the same results, but less efficiently.