Please explain how indicators cache works.
E.g.
public partial class Indicator : IndicatorBase
{
private MyHeavyIndicator[] cacheMyHeavyIndicator = null;
I need global cache for all instances. I think code would be as below
public partial class Indicator : IndicatorBase
{
private static MyHeavyIndicator[] cacheMyHeavyIndicator = null;

Comment