Skip to content

TickSize Property

Summary

Gets the tick size for the current symbol.

Remarks

If the symbol is a 5 digit symbol, the tick size is 0.00001.

Signature

1
public abstract double TickSize {get;}

Return Value

double

Declaring Type

cAlgo.API.Internals.Symbol

Examples

1
2
3
4
 protected override void OnTick()
 {
     Print("The current symbol has TickSize: {0}", Symbol.TickSize);
 }

Last update: March 23, 2023