0
Coinmarketcap shows trading volume for the last 24 hour. Where can I find trading volume for the last x hour/minute? Or How can I calculate it myself programmatically?
0
Coinmarketcap shows trading volume for the last 24 hour. Where can I find trading volume for the last x hour/minute? Or How can I calculate it myself programmatically?
1
cryptocompare has the utility you need.
Coins at the top, find your coinIf this is too unwieldy, cryptocompare does have an api and a useful npm package to play around with.
0
The cheapest way to do this yourself would be to read the API docs of each exchange and write your own code for downloading minutely price data and that will also include volume data. You can then resample later according your needs.
For example,