Skip to content

PipSize Property

Summary

Gets the pip size for current symbol.

Signature

1
public abstract double PipSize {get;}

Return Value

double

Declaring Type

cAlgo.API.Internals.Symbol

Examples

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

Last update: March 23, 2023