Login Page - Create Account

Support Board


Date/Time: Wed, 30 Apr 2025 11:35:24 +0000



Post From: When to update sierrachart.h?

[2025-04-18 16:50:49]
User719512 - Posts: 310
You only need to update sierrachart.h for your local build when you use a function that requires a higher version number.

For example:
sierrachart.h

  // 2658
  int32_t (SCDLLCALL* GetSelectedUserDrawnDrawingFromChart)(const int ChartNumber, s_UseTool& r_ACSILChartDrawing);

If you want to use this function, it was introduced in v2658. So you need the header file that requires that minimum version as specified by SC_DLL_VERSION.


// SC_DLL_VERSION gets updated only when there have been changes to the DLL
// study interface. This will be set to the Sierra Chart version number
// that includes the changes made to the interface.
#define SC_DLL_VERSION 2748