UNPKG

@master-chief/alpaca-ts

Version:

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

19 lines 552 B
/** * Get Top Market Movers by Market type * Returns top market movers for stocks. By default will return top 5 market gainers and losers. * @returns MarketMoversResponse OK * @throws ApiError */ export const getScreenerMovers = (httpRequest, { marketType, top = 10, }) => { return httpRequest.request({ method: "GET", url: "/v1beta1/screener/{market_type}/movers", path: { market_type: marketType, }, query: { top: top, }, }); }; //# sourceMappingURL=screener.js.map