@master-chief/alpaca-ts
Version:
A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.
21 lines (20 loc) • 333 B
TypeScript
/**
* Represents the current exchanges Alpaca supports. List is currently:
*
* - AMEX
* - ARCA
* - BATS
* - NYSE
* - NASDAQ
* - NYSEARCA
* - OTC
*/
export declare enum Exchange {
AMEX = "AMEX",
ARCA = "ARCA",
BATS = "BATS",
NYSE = "NYSE",
NASDAQ = "NASDAQ",
NYSEARCA = "NYSEARCA",
OTC = "OTC"
}