UNPKG

@master-chief/alpaca-ts

Version:

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

9 lines (8 loc) 209 B
/** * Which feed to pull market data from. This is either `iex` or `sip`. `sip` and `otc` are only available to those with a subscription */ export enum feed { IEX = "iex", SIP = "sip", OTC = "otc", }