Petersoj / alpaca-java

A Java API for Alpaca, the commission free, algo friendly, stock trading broker. https://alpaca.markets
https://petersoj.github.io/alpaca-java/
MIT License
197 stars 82 forks source link

Added List of Symbols to getOrders() #83

Closed tamuseanmiller closed 3 years ago

tamuseanmiller commented 3 years ago

82 I'm sure you may want some wording changed, but this was an easy addition. Looks like there might be a conflict with line 354 for apiVersion, may not have had the most recent pull I'm not sure what happened there.

Petersoj commented 3 years ago

Looks good! To generate a CSV from a collection/list you can use: String.join(",", list) which is pretty convenient.

tamuseanmiller commented 3 years ago

Looks good! To generate a CSV from a collection/list you can use: String.join(",", list) which is pretty convenient.

Works for me! Appreciate it!