UNPKG

@master-chief/alpaca-ts

Version:

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

8 lines (7 loc) 229 B
/** * Request format used for creating a new watchlist or updating an existing watchlist with a set of assets and name. */ export declare type UpdateWatchlistRequest = { name: string; symbols?: Array<string | null>; };