What is QuoteAssetVolume and BaseAssetVolume?

2

This is a JSON result for a candle returned by an exchange API for ETHBTC:

{ openTime: 1517340600000,
  open: '0.10635000',
  high: '0.10742000',
  low: '0.10635000',
  close: '0.10687200',
  volume: '600.53200000',
  closeTime: 1517340899999,
  quoteAssetVolume: '27.65975320',
  trades: 1233,
  baseAssetVolume: '259.09000000' }

What is quoteAssetVolume and baseAssetVolume?

Ole

Posted 2018-02-01T04:56:21.907

Reputation: 141

1@Saxtheowl and Ole: I see that you readded the tag [tag:API]. I don't feel strongly about it, but figured I could explain why I had removed it in the first place. Tags on Stackexchange are used to describe the topic of a question. This question asks about terminology in the context of exchange rates. The terms were found by using an API, but the question is not about APIs. :)Murch 2019-10-02T19:51:11.790

1@Murch ah yes, sorry for rushing a little too much :)Saxtheowl 2019-10-02T19:56:03.190

Answers

1

baseAssetVolume is the quantity shown as the amount of coins received by the buyer whereas the quoteAssetVolume is the amount paid by the payer

Saxtheowl

Posted 2018-02-01T04:56:21.907

Reputation: 1 148