Login Page - Create Account

Support Board


Date/Time: Sat, 11 Jan 2025 12:47:28 +0000



Post From: Did the Auto Retracement/Projection study get changed in the v1491 release?

[2016-11-30 20:17:56]
User264623 - Posts: 28
I believe the issue to be this:

Studies6.cpp file:

Lines 3707-3713:

if (ReferenceSingleSubgraph.GetYesNo())
  {
    OpenSubgraph = SC_OPEN;
    HighSubgraph = SC_OPEN;
    LowSubgraph = SC_OPEN;
    LastSubgraph = SC_OPEN;
  }

---------------------------------------------------------
I changed the base data to reflect the following:

if (ReferenceSingleSubgraph.GetYesNo())
  {
    OpenSubgraph = SC_OPEN;
    HighSubgraph = SC_HIGH;
    LowSubgraph = SC_LOW;
    LastSubgraph = SC_LAST;
  }

I recompiled and the high / low function of the study now reflects properly, and not the open of the bar as was the case of issue in my original post.