Support Board
Date/Time: Fri, 10 Jan 2025 12:49:30 +0000
Post From: New Compiler
[2016-09-04 21:02:15] |
mkata - Posts: 103 |
1) This was the original file I compiled for the errors. // The top of every source code file must include this line
#include "sierrachart.h" // This line is required. Change the text within the quote // marks to what you want to name your group of custom studies. SCDLLName("Custom Study DLL") //This is the basic framework of a study function. Change the name 'TemplateFunction' to what you require. SCSFExport scsf_TemplateFunction(SCStudyInterfaceRef sc) { // Section 1 - Set the configuration variables and defaults if (sc.SetDefaults) { sc.GraphName = "Template Function"; // During development set this flag to 1, so the DLL can be rebuilt without restarting Sierra Chart. When development is completed, set it to 0 to improve performance. sc.FreeDLL = 1; sc.AutoLoop = 1; //Automatic looping is enabled. sc.Subgraph[0].Name = "Name"; sc.Subgraph[0].DrawStyle = DRAWSTYLE_LINE; sc.Subgraph[0].PrimaryColor = RGB (0, 255, 0); sc.Input[0].Name = "Float Input"; sc.Input[0].SetFloat(0.0f); return; } // Section 2 - Do data processing here } 2) This is an attempt to build piece by piece. Only two lines but I still get the same errors. #include "sierrachart.h"
SCDLLName("Custom Study DLL") 3) I guess I'll try to uninstall/re-install. |