UNPKG

@master-chief/alpaca-ts

Version:

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

18 lines 453 B
/** * Represents the types of orders Alpaca currently supports * * - market * - limit * - stop * - stop_limit * - trailing_stop */ export var OrderType; (function (OrderType) { OrderType["MARKET"] = "market"; OrderType["LIMIT"] = "limit"; OrderType["STOP"] = "stop"; OrderType["STOP_LIMIT"] = "stop_limit"; OrderType["TRAILING_STOP"] = "trailing_stop"; })(OrderType || (OrderType = {})); //# sourceMappingURL=OrderType.js.map