Login Page - Create Account

Support Board


Date/Time: Mon, 19 Jan 2026 00:15:27 +0000



Version 2865: Custom Study: missing input in settings dialog: my solution

View Count: 31

[2026-01-18 18:34:10]
User509533 - Posts: 86
When I use the following, it does not show up in the Settings dialog:

SCInputRef Input_Subgraph13Reference = sc.Input[22];

The solution for me was to use a lower available index, such as [0], which works correctly for my code:

SCInputRef Input_Subgraph13Reference = sc.Input[0];
[2026-01-18 18:56:47]
User719512 - Posts: 396
You could be running into this Input DisplayOrder breaks with non-contiguous inputs
There are workarounds like you found, and Sierra also added a new flag to mitigate this as well.

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

Login

Login Page - Create Account