Here's the code pieces.
// Create the series to hold the VWAP entries
public Series<double> MyVWAP;
// Assign the VWAP Series to my Series <double>
MyVWAP = OrderFlowVWAP(VWAPResolution.Standard, BarsArray[0].TradingHours, VWAPStandardDeviations.None, 1, 2, 3).VWAP;
// Then assign the values to appear on the chart
Values[4][0] = MyVWAP[0];
How do I get this to work? What am I missing?

Comment