Login Page - Create Account

Support Board


Date/Time: Sat, 15 Mar 2025 23:22:13 +0000



Post From: ACSIL Study Call Frequency

[2015-02-14 23:55:05]
Kiwi - Posts: 375
You can do the things you want by adding code at the beginning of a dll function to check if your desired condition has changed.

Thats much more efficient than SCE doing it (and impacting every single study with unneeded checks). For example a lot of my studies only need to change every new bar so if they're intensive I add something like this at the beginning to short circuit evaluation:

    if(sc.Subgraph[9][99] == sc.ArraySize) return;
    sc.Subgraph[9][99] = sc.ArraySize;