typescript-sdk icon indicating copy to clipboard operation
typescript-sdk copied to clipboard

A TypeScript SDK for the https://alpaca.markets REST API and WebSocket streams.

Results 11 typescript-sdk issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi! I see that the project is almost ready. Let me express my gratitude for your contribution to the algo trading community. I'm really looking forward, like many others, to...

I have no idea why is happening All I did was run `npm install @alpacahq/typescript-sdk` and it successfully installed and my project has no vulnerabilities. I tried all sorts of...

Hi 👋🏻 I'm a bit confused about the lack of an official API for TypeScript, especially considering alpaca-py, which is really well done. This library looks promising, but I don't...

When attempting to use `client.getStocksBars(...)` with all default client settings, the API endpoint is not found. I then set the baseURL on the client to the non-paper markets API and...

For API in: https://docs.alpaca.markets/reference/get-v2-corporate_actions-announcements-1 ![image](https://github.com/user-attachments/assets/e4c8995d-af03-4660-8a70-60812a353c93) The return type is missing: ```typescript corporate_action_id: string; ex_date: string; ``` I tried to create a new branch and push but got 403'd. I don't...

I notice when attempting to [getOrders](https://github.com/alpacahq/typescript-sdk/blob/main/api/trade.ts#L211) that it expects me to provide and order_id and that it returns a single Order rather than an array of Order. I would expect...

The current endpoint returns `not found`. It should be `/movers` instead of `/market-movers`. Also, I don't see why there is a `by: "change"` option as I could not find any...

resolves #5 and resolves #10

You have some market data endpoints that point to `/v1beta1/`, for example: https://github.com/alpacahq/typescript-sdk/blob/ea0deb6e2f00b7c13deb826160b9a002a134739c/api/marketData.ts#L472-L479 Also I think that setting the baseURL manually is needed in client init for the domain to...