Login Page - Create Account

Support Board


Date/Time: Sun, 06 Jul 2025 10:20:47 +0000



Post From: Copy Price Under The Mouse ACSIL Help.

[2025-06-28 10:35:02]
User431178 - Posts: 733

However, these methods are not available in my current version, and the compiler returns errors indicating that they are not recognized members of SCInputRef.

Which version of Sierra Chart introduced support for these functions?

Are there any build settings, flags, or compiler defines I need to enable in order to use these functions?

You (or chatGPT) are doing something odd, those are not new functions and you don't need to do anything unusual to make use of them.

If you provide an example of what you're doing you might get some help correcting it.
There are many examples of studies in the ACS_source folder, so you could check there for some ideas on what is wrong too.


SCInputRef::GetCustomInputIndex()
SCInputRef::SetIndex()
SCInputRef::SetCustomInputIndex()

This won't work as they are not static functions, you need to call the function on an actual instance of the class.


sc.Input[0].GetCustomInputIndex();

ACSIL Interface Members - sc.Input Array: Introduction