Skip to content

Commit

Permalink
fix(bitcoiva): base and quote volumes are reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpater authored Aug 19, 2020
1 parent 37ef18d commit e968f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/bitcoiva.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Bitcoiva extends Driver {
low: parseToFloat(ticker.low),
close: parseToFloat(ticker.current_price),
open: parseToFloat(ticker.start_price),
baseVolume: parseToFloat(ticker.volume),
quoteVolume: parseToFloat(ticker.volume),
});
});
}
Expand Down

0 comments on commit e968f10

Please sign in to comment.