I am writing a custom Market Analyzer Column script and I want to customize the column's color depending on its value so in my script, I am interfacing Gui.NinjaScript.MarketAnalyzerColumnRenderBase instead of the default MarketAnalyzerColumn to make color customizations in OnRender(). The problem is when I switch to this interface, I lose access to indicator functions like SMA, EMA and other built-in NinjaTrader functions in the body of my script particularly in OnBarUpdate().
My question is: is there a way to access SMA(), EMA() and other NinjaTrader indicator functions while interfacing Gui.NinjaScript.MarketAnalyzerColumnRenderBase in a Market Analyzer Column? Many thanks in advance to whoever can help.

Comment