最小の変動幅、すなわち対応する銘柄の1 tickあたりの変動幅
注記:このプロパティはInitialize()メソッドの中で アクセスされるべきではない 。
銘柄の最小の変動幅を表す double 型の値
TickSize
// Prints the ticksize to the output window
Print("The ticksize of this instrument is " + TickSize.ToString());
// Prints the value of the current bar low less one tick size
double value = Low[0] - TickSize;
Print(value.ToString());