If I want to get the Pivots for today within my Strategy and I call
double value = Pivots(PivotRange.Daily, HLCCalculationMode.UserDefinedValues, 20).PP[0];
Print("The current Pivots pivot value is " + value.ToString());
So that I want to pass in the High Low Close using the HLCCalculationMode.UserDefinedValues. How do I specify the User Defined High, Low Close. I can't seem to figure out how I am supposed to define or pass them to the Pivots function.
Thanks....
Mark

Comment