Get orderbooks current data by multiple symbols
bfischer1121 opened this issue · comments
Hi it would be nice if
coinapi-sdk/javascript-rest/coinapi_v1.js
Line 220 in 56aca0b
was something like
var path = this.url + ("/v1/orderbooks/current?filter_symbol_id=" + symbol_id);
to allow filtering by multiple symbols
@bfischer1121 It's already like that.
It's also documented in the: https://docs.coinapi.io/#current-data32
@Svisstack Yea the API allows it but I'm referring to the SDK method referenced above. It uses the 1st variant that throws errors if you try comma or semi-colon delimited filters. I'm making a custom request instead of using the SDK in this instance, but it would be nice to use the SDK as it has transformResponse
@bfischer1121 This will fix your issue? #43
Yea looks great - thank you
It's merged.