@master-chief/alpaca-ts
Version:
A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.
34 lines (33 loc) • 524 B
TypeScript
/**
* XBBO or Cross Best Bid and Offer represents the Best Bid and Offer for an exchange
*/
export declare type XBBO = {
/**
* Timestamp in RFC-3339 format with nanosecond precision.
*/
t: string;
/**
* Ask exchange.
*/
ax: string;
/**
* Ask price.
*/
ap: number;
/**
* Ask size.
*/
as: number;
/**
* Bid exchange.
*/
bx: string;
/**
* Bid price.
*/
bp: number;
/**
* Bid size.
*/
bs: number;
};