alpaca-trade-api icon indicating copy to clipboard operation
alpaca-trade-api copied to clipboard

Results 11 alpaca-trade-api issues
Sort by recently updated
recently updated
newest added

Previously only the activity_type param was supported but the underlying Alpaca API supports additional params.

Alpaca's API supports the symbols param so I added it to Alpaca::Trade::Api::Client#orders method. This really helps cut down the size of the response when only orders for a specific symbol...

Alpaca Data API v1 was officially [deprecated Sept 26, 2021](https://alpaca.markets/docs/api-documentation/api-v2/market-data/alpaca-data-api-v1/). The updates in this PR are solely meant to address `Bars` in [Alpaca Data API v2](https://alpaca.markets/docs/api-documentation/api-v2/market-data/alpaca-data-api-v2/historical/), as there are additional...

This is intended to modify bars to allow you to also pass start/end/until/after arguments to the API endpoint.

Curious if this was intentional. It feels like the data endpoint should belong in its own folder next to trade. It threw me off as I was reading through the...

Hello, Just a quick check in to see if this gem is maintained? If so, I would like to add streaming support and want to check if it's something you...

This is my first time using this gem and as I started using it, discovered bars endpoint was still on v1, which no longer exists. There seems to be a...

When using this from the example ``` require 'alpaca/trade/api' Alpaca::Trade::Api.configure do |config| config.endpoint = 'https://paper-api.alpaca.markets' config.key_id = 'xxxxxxxx' config.key_secret = 'xxxxx' end client = Alpaca::Trade::Api::Client.new puts client.orders.last.inspect ``` It returns...

If there is a malformed request, in my case it was passing an array of strings for the "symbols" parameter, the client will return an Order with all nil parameters,...

Bumps [rexml](https://github.com/ruby/rexml) from 3.2.5 to 3.2.8. Release notes Sourced from rexml's releases. REXML 3.2.8 - 2024-05-16 Fixes Suppressed a warning REXML 3.2.7 - 2024-05-16 Improvements Improve parse performance by using...

dependencies