parent
a586a50cd8
commit
261667e5e8
@ -41,7 +41,7 @@ class Bitcoin(IntervalModule):
|
|||||||
* {bid_price}
|
* {bid_price}
|
||||||
* {daily_average}
|
* {daily_average}
|
||||||
* {volume}
|
* {volume}
|
||||||
* {volume_thousend}
|
* {volume_thousand}
|
||||||
* {volume_percent}
|
* {volume_percent}
|
||||||
* {age}
|
* {age}
|
||||||
* {status}
|
* {status}
|
||||||
@ -132,7 +132,7 @@ class Bitcoin(IntervalModule):
|
|||||||
"bid_price": price_data["bid"],
|
"bid_price": price_data["bid"],
|
||||||
"last_price": price_data["last"],
|
"last_price": price_data["last"],
|
||||||
"volume": price_data["volume"],
|
"volume": price_data["volume"],
|
||||||
"volume_thousend": price_data["volume"] / 1000,
|
"volume_thousand": float(price_data["volume"]) / 1000,
|
||||||
"volume_percent": price_data["volume_percent"],
|
"volume_percent": price_data["volume_percent"],
|
||||||
"age": self._get_age(price_data['timestamp'])
|
"age": self._get_age(price_data['timestamp'])
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user