Support Board
Date/Time: Sat, 01 Feb 2025 14:48:27 +0000
Post From: Old indicator (2017) is not compiling with remote build
[2019-07-15 06:40:29] |
Sierra Chart Engineering - Posts: 104368 |
Code like this: return sc.PersistVars->Integers[BULLISH_BASE + tick_size];
Needs to be changed to: return sc.GetPersistentInt(BULLISH_BASE + tick_size);
But there is a possibility of conflict with code like this: int &first_bullish_index = sc.GetPersistentInt(2);
You need to be sure that every unique persistent variable that is required uses a unique integer identifier. 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, *change* to the Teton service: Sierra Chart Teton Futures Order Routing |