levelsInfo = MyLevelsInfoPanel(BarsArray[1]);
and later I update the levels from the calling indicator.
With this method I see no errors when tracing but the called indicator never displays on the screen even though the IsVisible property is true and Z-Index is 0. I also noticed that the OnBarUpdate() is never called which I am using to transfer those public properties to WPF controls.
The other way is I add the called indicator to the indicator list for the chart. There I see my floating panel show up and the OnBarUpdate() is called, but how can I address it from the calling indicator?

Comment