Bleh, convert fill data to `float`s in kraken broker..
parent
45b97bf6c3
commit
887583d27f
|
@ -1015,11 +1015,10 @@ async def handle_order_updates(
|
||||||
fill_msg = BrokerdFill(
|
fill_msg = BrokerdFill(
|
||||||
time_ns=time.time_ns(),
|
time_ns=time.time_ns(),
|
||||||
reqid=reqid,
|
reqid=reqid,
|
||||||
|
# just use size value for now?
|
||||||
# action=action, # just use size value
|
# action=action,
|
||||||
# for now?
|
size=float(vlm),
|
||||||
size=vlm,
|
price=float(price),
|
||||||
price=price,
|
|
||||||
|
|
||||||
# TODO: maybe capture more msg data
|
# TODO: maybe capture more msg data
|
||||||
# i.e fees?
|
# i.e fees?
|
||||||
|
|
Loading…
Reference in New Issue