Login Page - Create Account

Support Board


Date/Time: Mon, 08 Sep 2025 16:03:40 +0000



Post From: Custom Study Compiles and Loads, but Function Never Executes (No Logging or Orders)

[2025-08-26 18:27:47]
ForgivingComputers.com - Posts: 1114
The Message Log is completely empty.

It should not be empty. There should be text in the log when starting Sierra Chart. Your study adds to the message log. I suspect there is a Mac/Parallels/Windows issue.

Also, this message will not only print on every bar, it will print every time the study is called.

// Just to confirm this is firing every bar
sc.AddMessageToLog("Tick update", 0);

If you change it to this, it will only fire once per bar.

// Just to confirm this is firing every bar
if (sc.GetBarHasClosedStatus() == BHCS_BAR_HAS_CLOSED)
sc.AddMessageToLog("Tick update", 0);