# getBid()

Returns the symbol current best bid price.

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