UNPKG

@master-chief/alpaca-ts

Version:

A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.

21 lines (20 loc) 312 B
/** * Represents the current exchanges Alpaca supports. List is currently: * * - AMEX * - ARCA * - BATS * - NYSE * - NASDAQ * - NYSEARCA * - OTC */ export enum Exchange { AMEX = "AMEX", ARCA = "ARCA", BATS = "BATS", NYSE = "NYSE", NASDAQ = "NASDAQ", NYSEARCA = "NYSEARCA", OTC = "OTC", }