Support Board
Date/Time: Sat, 05 Apr 2025 07:32:16 +0000
Post From: Kiwi Resync Study - Memory leak?
[2025-04-02 05:16:17] |
User35525 - Posts: 184 |
The built-in 'Chart Recalculation - Periodic' study causes a constant CPU load. Is this necessary or can it be adjusted to just run on bar-end like this study suggests? Recalculate on Bar Close. Any options? SCSFExport scsf_study_name(SCStudyGraphRef sc) // scsf_Name can be anything { if(sc.GetBarHasClosedStatus()==BHCS_BAR_HAS_NOT_CLOSED) return;//do not do any processing if the bar at our current index has not closed if (sc.SetDefaults != 1 && sc.IsFullRecalculation != 1) { sc.FlagToReloadChartData= 1; } else { sc.FlagToReloadChartData= 0; } ... I actually wrote that snippet awhile back but I'm rusty with C++ these days and will have to see if I can get it working again. Would love if there was a built-in or user-contributed study that did a Ctrl-Insert reload+recalc automagically on Bar-Close so the CPU load was low. |