# getAsk()

Returns the symbol current best ask price.

  • Interface
class MidaSymbol {
    getAsk (): Promise<MidaDecimal>;
}
  • Example
const btcUsdt = await myAccount.getSymbol("BTCUSDT");
const askPrice = await btcUsdt.getAsk();