Where to find last x hour/minute trading volume for a given coin

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?

DeveScie

Posted 2018-01-13T16:55:21.747

Reputation: 135

Answers

1

cryptocompare has the utility you need.

  1. Go to Coins at the top, find your coin
  2. Analysis
  3. Change the bar graph at the bottom to display by Hour
  4. Use the interface to see the volume per second

If this is too unwieldy, cryptocompare does have an api and a useful npm package to play around with.

arshbot

Posted 2018-01-13T16:55:21.747

Reputation: 753

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,

Tanmay

Posted 2018-01-13T16:55:21.747

Reputation: 186