Login Page - Create Account

Support Board


Date/Time: Mon, 24 Feb 2025 01:00:52 +0000



Post From: turning a subgraph into a system error

[2021-02-23 08:32:18]
User61576 - Posts: 445
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!