when using this syntax (null) in an indicator that calculates from volumetric does this work correctly then when applying the indicator eg in a 1 minute chart or 5 Range chart? I thought with this solution I dont need to modify the indicator for every instrument and with the int for the value of the added dataseries its easier to handle in the parameters when applying instead in the code as well.
else if (State == State.Configure)
{
AddVolumetric(null, BarsPeriodType.Range, valuedataseries, VolumetricDeltaType.BidAsk, 1);
}
Thank you!
Tony

Comment