Use `iterticks()` to filter to clears, get first price manually before submit..
parent
f1eb76d29f
commit
da07685e8b
|
@ -1,4 +1,4 @@
|
||||||
from pprint import pformat
|
# from pprint import pformat
|
||||||
from functools import partial
|
from functools import partial
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
from typing import Callable
|
from typing import Callable
|
||||||
|
@ -7,6 +7,7 @@ import tractor
|
||||||
import trio
|
import trio
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
|
from piker.service import maybe_open_pikerd
|
||||||
from piker.accounting import dec_digits
|
from piker.accounting import dec_digits
|
||||||
from piker.clearing import (
|
from piker.clearing import (
|
||||||
open_ems,
|
open_ems,
|
||||||
|
@ -19,6 +20,7 @@ from piker.clearing._messages import (
|
||||||
BrokerdPosition,
|
BrokerdPosition,
|
||||||
)
|
)
|
||||||
from piker.data import (
|
from piker.data import (
|
||||||
|
iterticks,
|
||||||
Flume,
|
Flume,
|
||||||
open_feed,
|
open_feed,
|
||||||
Feed,
|
Feed,
|
||||||
|
@ -75,8 +77,6 @@ async def bot_main():
|
||||||
and process orders statuses in real-time.
|
and process orders statuses in real-time.
|
||||||
|
|
||||||
'''
|
'''
|
||||||
from piker.service import maybe_open_pikerd
|
|
||||||
|
|
||||||
ll: str = 'info'
|
ll: str = 'info'
|
||||||
|
|
||||||
# open an order ctl client, live data feed, trio nursery for
|
# open an order ctl client, live data feed, trio nursery for
|
||||||
|
@ -123,6 +123,7 @@ async def bot_main():
|
||||||
|
|
||||||
trio.open_nursery() as tn,
|
trio.open_nursery() as tn,
|
||||||
):
|
):
|
||||||
|
assert accounts
|
||||||
print(f'Loaded binance accounts: {accounts}')
|
print(f'Loaded binance accounts: {accounts}')
|
||||||
|
|
||||||
flume: Flume = feed.flumes[fqme]
|
flume: Flume = feed.flumes[fqme]
|
||||||
|
@ -136,7 +137,9 @@ async def bot_main():
|
||||||
quote_stream: trio.abc.ReceiveChannel = feed.streams['binance']
|
quote_stream: trio.abc.ReceiveChannel = feed.streams['binance']
|
||||||
|
|
||||||
|
|
||||||
clear_margin: float = 0.9995
|
# always keep live limit 0.003% below last
|
||||||
|
# clearing price
|
||||||
|
clear_margin: float = 0.9997
|
||||||
|
|
||||||
async def trailer(
|
async def trailer(
|
||||||
order: Order,
|
order: Order,
|
||||||
|
@ -146,14 +149,19 @@ async def bot_main():
|
||||||
# m_shm: ShmArray = flume.hist_shm
|
# m_shm: ShmArray = flume.hist_shm
|
||||||
|
|
||||||
# NOTE: if you wanted to frame ticks by type like the
|
# NOTE: if you wanted to frame ticks by type like the
|
||||||
# the quote throttler does.
|
# the quote throttler does.. and this is probably
|
||||||
|
# faster in terms of getting the latest tick type
|
||||||
|
# embedded value of interest?
|
||||||
# from piker.data._sampling import frame_ticks
|
# from piker.data._sampling import frame_ticks
|
||||||
|
|
||||||
async for quotes in quote_stream:
|
async for quotes in quote_stream:
|
||||||
for fqme, quote in quotes.items():
|
for fqme, quote in quotes.items():
|
||||||
# print(quote['symbol'])
|
# print(quote['symbol'])
|
||||||
for tick in reversed(
|
for tick in iterticks(
|
||||||
quote.get('ticks', ())
|
quote,
|
||||||
|
|
||||||
|
# default are already this
|
||||||
|
# types=('trade', 'dark_trade'),
|
||||||
):
|
):
|
||||||
# print(
|
# print(
|
||||||
# f'{fqme} ticks:\n{pformat(tick)}\n\n'
|
# f'{fqme} ticks:\n{pformat(tick)}\n\n'
|
||||||
|
@ -161,57 +169,78 @@ async def bot_main():
|
||||||
# # f'last 1m OHLC:\n{m_shm.array[-1]}\n'
|
# # f'last 1m OHLC:\n{m_shm.array[-1]}\n'
|
||||||
# )
|
# )
|
||||||
|
|
||||||
# always keep live limit 2% below last
|
await client.update(
|
||||||
# clearing price
|
uuid=order.oid,
|
||||||
if tick['type'] == 'trade':
|
price=price_round(
|
||||||
await client.update(
|
clear_margin
|
||||||
uuid=order.oid,
|
*
|
||||||
price=price_round(
|
tick['price']
|
||||||
clear_margin
|
),
|
||||||
*
|
)
|
||||||
tick['price']
|
msgs, pps = await wait_for_order_status(
|
||||||
),
|
trades_stream,
|
||||||
)
|
order.oid,
|
||||||
msgs, pps = await wait_for_order_status(
|
'open'
|
||||||
trades_stream,
|
)
|
||||||
oid,
|
# if multiple clears per quote just
|
||||||
'open'
|
# skip to the next quote?
|
||||||
)
|
break
|
||||||
# if multiple clears per quote just
|
|
||||||
# skip to the next quote?
|
|
||||||
break
|
|
||||||
|
|
||||||
|
|
||||||
|
# get first live quote to be sure we submit the initial
|
||||||
|
# live buy limit low enough that it doesn't clear due to
|
||||||
|
# a stale initial price from the data feed layer!
|
||||||
|
first_ask_price: float | None = None
|
||||||
|
async for quotes in quote_stream:
|
||||||
|
for fqme, quote in quotes.items():
|
||||||
|
# print(quote['symbol'])
|
||||||
|
for tick in iterticks(quote, types=('ask')):
|
||||||
|
first_ask_price: float = tick['price']
|
||||||
|
break
|
||||||
|
|
||||||
|
if first_ask_price:
|
||||||
|
break
|
||||||
|
|
||||||
# setup order dialog via first msg
|
# setup order dialog via first msg
|
||||||
size: float = 0.01
|
|
||||||
price: float = price_round(
|
price: float = price_round(
|
||||||
clear_margin
|
clear_margin
|
||||||
*
|
*
|
||||||
flume.first_quote['last']
|
first_ask_price,
|
||||||
)
|
)
|
||||||
oid: str = str(uuid4())
|
|
||||||
|
# compute a 1k USD sized pos
|
||||||
|
size: float = round(1e3/price, ndigits=3)
|
||||||
|
|
||||||
order = Order(
|
order = Order(
|
||||||
exec_mode='live', # {'dark', 'live', 'alert'}
|
|
||||||
action='buy', # TODO: remove this from our schema?
|
# docs on how this all works, bc even i'm not entirely
|
||||||
oid=oid,
|
# clear XD. also we probably want to figure out how to
|
||||||
account='paper', # use binance.usdtm for binance futes
|
# offer both the paper engine running and the brokerd
|
||||||
|
# order ctl tasks with the ems choosing which stream to
|
||||||
|
# route msgs on given the account value!
|
||||||
|
account='paper', # use built-in paper clearing engine and .accounting
|
||||||
# account='binance.usdtm', # for live binance futes
|
# account='binance.usdtm', # for live binance futes
|
||||||
|
|
||||||
|
oid=str(uuid4()),
|
||||||
|
exec_mode='live', # {'dark', 'live', 'alert'}
|
||||||
|
|
||||||
|
action='buy', # TODO: remove this from our schema?
|
||||||
|
|
||||||
size=size,
|
size=size,
|
||||||
symbol=fqme,
|
symbol=fqme,
|
||||||
price=price,
|
price=price,
|
||||||
brokers=['binance'],
|
brokers=['binance'],
|
||||||
)
|
)
|
||||||
|
|
||||||
await client.send(order)
|
await client.send(order)
|
||||||
|
|
||||||
msgs, pps = await wait_for_order_status(
|
msgs, pps = await wait_for_order_status(
|
||||||
trades_stream,
|
trades_stream,
|
||||||
oid,
|
order.oid,
|
||||||
'open'
|
'open',
|
||||||
)
|
)
|
||||||
|
|
||||||
assert not pps
|
assert not pps
|
||||||
assert msgs[-1].oid == oid
|
assert msgs[-1].oid == order.oid
|
||||||
|
|
||||||
# start "trailer task" which tracks rt quote stream
|
# start "trailer task" which tracks rt quote stream
|
||||||
tn.start_soon(trailer, order)
|
tn.start_soon(trailer, order)
|
||||||
|
@ -221,10 +250,11 @@ async def bot_main():
|
||||||
await trio.sleep_forever()
|
await trio.sleep_forever()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
# cancel the open order
|
# cancel the open order
|
||||||
await client.cancel(oid)
|
await client.cancel(order.oid)
|
||||||
|
|
||||||
msgs, pps = await wait_for_order_status(
|
msgs, pps = await wait_for_order_status(
|
||||||
trades_stream,
|
trades_stream,
|
||||||
oid,
|
order.oid,
|
||||||
'canceled'
|
'canceled'
|
||||||
)
|
)
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Reference in New Issue