Login Page - Create Account

Support Board


Date/Time: Sun, 06 Jul 2025 04:05:01 +0000



Post From: turning a subgraph into a system error

[2021-02-23 08:32:18]
User61576 - Posts: 450
I looked on
scsf_TradingSystemStudySubgraphCrossover

they also do the same check condition for bar close

if (Input_EvaluateOnBarCloseOnly.GetYesNo()
    && sc.GetBarHasClosedStatus() == BHCS_BAR_HAS_NOT_CLOSED)
  {
    return;
  }

so for learning purposes, how the above is different from your suggested solution of using
[sc.Index-1]
thanks!