If I use the following syntax will that catch all possibilities.
TickSize=Bars.Instrument.MasterInstrument.TickSize;
if(Instrument.MasterInstrument.InstrumentType == InstrumentType.Future)
TickSize=Bars.Instrument.MasterInstrument.TickSize;
if(Instrument.MasterInstrument.InstrumentType == InstrumentType.Stock)
TickSize=0.01;
if(Instrument.MasterInstrument.InstrumentType == InstrumentType.Currency)
TickSize=0.0001;

Comment