Stex market fix + update

-Fixed the 24h stats volume column which was displaying btc volume
-Added btc volume column to 24 stats
This commit is contained in:
joeuhren
2021-03-07 18:14:38 -07:00
parent 05e6710c41
commit 3135d45c2e
+2 -1
View File
@@ -11,7 +11,8 @@ function get_summary(coin, exchange, stex_id, cb) {
else if (body.success === true) {
summary['bid'] = body.data['bid'];
summary['ask'] = body.data['ask'];
summary['volume'] = body.data['volume'];
summary['volume'] = body.data['volumeQuote'];
summary['volume_btc'] = body.data['volume'];
summary['high'] = body.data['high'];
summary['low'] = body.data['low'];
summary['last'] = body.data['last'];