Skip to content

Spread Property

Summary

Gets the current spread of this symbol.

Remarks

The difference between the Ask and the Bid price for the symbol.(seeand )

Signature

1
public abstract double Spread {get;}

Return Value

double

Declaring Type

cAlgo.API.Internals.Symbol

Examples

1
2
3
4
 protected override void OnTick()
 {
     Print("The Spread of the symbol is: {0}", Symbol.Spread);
 }

Last update: March 17, 2023