mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-25 16:25:16 +00:00
python: fix attribute
This commit is contained in:
parent
e240361494
commit
fc8fff0fe4
|
@ -30,7 +30,7 @@ class Trade:
|
||||||
session=obj.session,
|
session=obj.session,
|
||||||
exchange=obj.exchange,
|
exchange=obj.exchange,
|
||||||
symbol=obj.symbol,
|
symbol=obj.symbol,
|
||||||
id=obj.id,
|
trade_id=obj.id,
|
||||||
price=parse_float(obj.price),
|
price=parse_float(obj.price),
|
||||||
quantity=parse_float(obj.quantity),
|
quantity=parse_float(obj.quantity),
|
||||||
created_at=parse_time(obj.created_at),
|
created_at=parse_time(obj.created_at),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "bbgo"
|
name = "bbgo"
|
||||||
version = "0.1.7"
|
version = "0.1.8"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["なるみ <weaper@gmail.com>"]
|
authors = ["なるみ <weaper@gmail.com>"]
|
||||||
packages = [
|
packages = [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user