I am trying to pass in OHLC/4 to the moving average indicators as the input source data. I see Weighted is HLCC/4, Typical is HLC/3, and Median is HL/2 but I don't see a PriceSeries for OHLC/4.
This gives a compile error: MovAvgTrendValue = EMA((Open+High+Low+Close)/4.0,MovAvgTrendPeriod)[0];
Comment