Support Board
Date/Time: Fri, 18 Apr 2025 18:46:18 +0000
Post From: Linux
[2025-03-12 18:54:42] |
User921987 - Posts: 239 |
Hello, Is there anyone who compiles their own indicators (DLLs) for Linux? I would like to ask you to try the following test DLL file and see if it gives the following error message in the sierrachart log when you add this indicator to your chart? "Failed to get the function address for scsf_VolatilityE4test in C:\SierraChart\Data\test.dll. Error: Windows error code 127: Procedure not found. *" This is what is happening on SierraChart's Add Study List https://imgur.com/gvx3vuf.png Here is the indicator code: #include "sierrachart.h" SCDLLName("Test") template <typename T> class Test { std::deque<T> data; }; SCSFExport scsf_Volatility(SCStudyInterfaceRef sc) { static Test<float> test; } Btw. This is intentionally made this simple for testing purposes, and therefore lacks all the normal configurations required by the indicator. In my experience, they (by their absence) have no effect. Date Time Of Last Edit: 2025-03-13 05:07:28
|