Anyone know the NinjaScript code to get the following info for a given instrument...
1. full contract size or full lot size (ie. a standard lot for EURUSD is 100,000 but in futures 6E is 125,000)
2. min contract size or aka lot step size (ie. for EURUSD min lot size is any multiple of 0.01)
3. tick size (ie. tick size for EURUSD is usually 0.00001)
For number 3 I am using the following code:
Instrument instrument = Instrument.GetInstrument(name);
double tickSize = instrument.MasterInstrument.TickSize;
But not sure how to get number 1 and 2 for the full contract size and the min contract step size?
TIA

Comment