Support Board
Date/Time: Wed, 15 Jan 2025 16:11:02 +0000
Post From: Question about SPECIAL_FEATURES and sc.AdvancedFeatures
[2017-07-26 18:14:49] |
Dryheat31 - Posts: 13 |
Hi, I am combing through the source code for the study named: "Automatic Trendlines". The source code is located in the file named studies4.cpp. In this code there is a test for service package: if (!sc.AdvancedFeatures )
{ if (sc.Index == 0) { sc.AddMessageToLog(SPECIAL_FEATURES,1); } return; } When I check the various service packages and view the items included in Service Package 5: Description of Service Packages and Pricing: Base Sierra Chart with Advanced Features (Service Package 5) I don't see anything listed that would tell me this study requires service package 5. As a developer, I need to have a clear understanding of when advanced feature are required. I want to make sure I know when to include this test for advanced features when developing my studies. Can someone please direct me to some resource that will explain this in detail? Or perhaps show me how I can temporarily turn off advanced features on my account so I can test my studies on the basic service package? Preferably the former rather than the latter. Thanks! |