Skip to content

Ask Property

Summary

Gets the current ask price for this symbol.

Remarks

The seller's price for the symbol.

Signature

1
public abstract double Ask {get;}

Return Value

double

Declaring Type

cAlgo.API.Internals.Symbol

Examples

1
2
3
4
 protected override void OnTick()
 {
     Print("Ask Price: {0}", Symbol.Ask);
 }

Last update: March 23, 2023