Support Board
Date/Time: Sat, 11 Jan 2025 09:00:41 +0000
Post From: Is there a way to reload chart data WITHOUT recalculating studies?
[2016-11-18 17:01:07] |
skelcap - Posts: 139 |
I have a chart with custom data and a study which changes the data, so I need to reload the data after calculating the study. I tried the following but on the reload after the recalc we have sc.IsFullRecalculation == 1 to it gets stuck in an infinite loop: if (sc.IsFullRecalculation) sc.FlagToReloadChartData = 1; else sc.FlagToReloadChartData = 0; |