Login Page - Create Account

Support Board


Date/Time: Fri, 14 Aug 2026 03:05:14 +0000



DominantCyclePhase does not use IndexParam parameter

View Count: 14

[2026-08-13 23:52:40]
User719512 - Posts: 455
Hi Sierra Chart Engineering,

DominantCyclePhase has two overloads and the one that should be used for manual looping does not make use of the IndexParam parameter.
This does not follow the convention of the nearby code.

Current sierrachart.h

  SCFloatArrayRef DominantCyclePhase(SCFloatArrayRef In, SCSubgraphRef Out, int IndexParam)
  {
    return InternalDominantCyclePhase(In, Out, Index);
  }

  SCFloatArrayRef DominantCyclePhase(SCFloatArrayRef In, SCSubgraphRef Out)
  {
    return InternalDominantCyclePhase(In, Out, Index);
  }

Suggested sierrachart.h

  SCFloatArrayRef DominantCyclePhase(SCFloatArrayRef In, SCSubgraphRef Out, int IndexParam)
  {
    return InternalDominantCyclePhase(In, Out, IndexParam);
  }

  SCFloatArrayRef DominantCyclePhase(SCFloatArrayRef In, SCSubgraphRef Out)
  {
    return InternalDominantCyclePhase(In, Out, Index);
  }

[2026-08-14 02:18:33]
Sierra_Chart Engineering - Posts: 24547
This will be fixed in the next release. Thank you for that.
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, use the Teton service:
Sierra Chart Teton Futures Order Routing

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account