@master-chief/alpaca-ts
Version:
A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.
22 lines • 498 B
JavaScript
/**
* Represents the current exchanges Alpaca supports. List is currently:
*
* - AMEX
* - ARCA
* - BATS
* - NYSE
* - NASDAQ
* - NYSEARCA
* - OTC
*/
export var Exchange;
(function (Exchange) {
Exchange["AMEX"] = "AMEX";
Exchange["ARCA"] = "ARCA";
Exchange["BATS"] = "BATS";
Exchange["NYSE"] = "NYSE";
Exchange["NASDAQ"] = "NASDAQ";
Exchange["NYSEARCA"] = "NYSEARCA";
Exchange["OTC"] = "OTC";
})(Exchange || (Exchange = {}));
//# sourceMappingURL=Exchange.js.map