Login Page - Create Account

Support Board


Date/Time: Fri, 31 Jul 2026 18:03:45 +0000



Post From: Subgraph value label no longer renders after recent update to 2919

[2026-06-16 07:16:28]
Sierra_Chart Engineering - Posts: 24348
We are working on the problem but will not have it resolved until tomorrow.

Also this code is completely wrong:
for (int i = start; i < sc.ArraySize; ++i)
{
Fuse = fuseVal;
FuseR1 = fuseR1Val;
FuseR2 = fuseR2Val;
FuseR3 = fuseR3Val;
GBX = gbxVal;
}

If it compiles, the compiler is not detecting a problem when it should.

It needs to be:
  for (int i = start; i < sc.ArraySize; ++i)
  {
    Fuse.Data[i] = fuseVal;
    FuseR1.Data[i] = fuseR1Val;
    FuseR2.Data[i] = fuseR2Val;
    FuseR3.Data[i] = fuseR3Val;
    GBX.Data[i] = gbxVal;
  }

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
Date Time Of Last Edit: 2026-06-16 07:17:07