TickSize

定義

最小の変動幅、すなわち対応する銘柄の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());
最終更新:2014年06月10日 03:50