Use mem-chans for quote streams; clone for multiple consumers
parent
17d3e7a9e2
commit
aa61bf5a65
|
@ -168,6 +168,7 @@ class Client:
|
|||
|
||||
# contract cache
|
||||
self._contracts: Dict[str, Contract] = {}
|
||||
self._feeds: Dict[str, trio.abc.SendChannel] = {}
|
||||
|
||||
# NOTE: the ib.client here is "throttled" to 45 rps by default
|
||||
|
||||
|
@ -387,7 +388,6 @@ class Client:
|
|||
async def stream_ticker(
|
||||
self,
|
||||
symbol: str,
|
||||
to_trio,
|
||||
opts: Tuple[int] = ('375', '233', '236'),
|
||||
contract: Optional[Contract] = None,
|
||||
) -> None:
|
||||
|
@ -396,8 +396,16 @@ class Client:
|
|||
contract = contract or (await self.find_contract(symbol))
|
||||
ticker: Ticker = self.ib.reqMktData(contract, ','.join(opts))
|
||||
|
||||
feed = self._feeds.get(symbol)
|
||||
if feed:
|
||||
# do something else
|
||||
# await tractor.breakpoint()
|
||||
to_trio, from_aio = feed
|
||||
return from_aio.clone()
|
||||
|
||||
# define a simple queue push routine that streams quote packets
|
||||
# to trio over the ``to_trio`` memory channel.
|
||||
to_trio, from_aio = trio.open_memory_channel(2**8) # type: ignore
|
||||
|
||||
def push(t):
|
||||
"""Push quotes to trio task.
|
||||
|
@ -415,10 +423,15 @@ class Client:
|
|||
log.error(f"Disconnected stream for `{symbol}`")
|
||||
self.ib.cancelMktData(contract)
|
||||
|
||||
# decouple broadcast mem chan
|
||||
self._feeds.pop(symbol, None)
|
||||
|
||||
ticker.updateEvent.connect(push)
|
||||
|
||||
# let the engine run and stream
|
||||
await self.ib.disconnectedEvent
|
||||
# cache feed for later consumers
|
||||
self._feeds[symbol] = to_trio, from_aio
|
||||
|
||||
return from_aio
|
||||
|
||||
async def get_quote(
|
||||
self,
|
||||
|
@ -691,13 +704,14 @@ async def _trio_run_client_method(
|
|||
|
||||
# if the method is an *async gen* stream for it
|
||||
meth = getattr(Client, method)
|
||||
if inspect.isasyncgenfunction(meth):
|
||||
kwargs['_treat_as_stream'] = True
|
||||
|
||||
args = tuple(inspect.getfullargspec(meth).args)
|
||||
|
||||
if inspect.isasyncgenfunction(meth) or (
|
||||
# if the method is an *async func* but manually
|
||||
# streams back results, make sure to also stream it
|
||||
args = tuple(inspect.getfullargspec(meth).args)
|
||||
if 'to_trio' in args:
|
||||
'to_trio' in args
|
||||
):
|
||||
kwargs['_treat_as_stream'] = True
|
||||
|
||||
result = await tractor.to_asyncio.run_task(
|
||||
|
@ -780,7 +794,7 @@ def normalize(
|
|||
# convert named tuples to dicts so we send usable keys
|
||||
new_ticks = []
|
||||
for tick in ticker.ticks:
|
||||
if tick:
|
||||
if tick and not isinstance(tick, dict):
|
||||
td = tick._asdict()
|
||||
td['type'] = tick_types.get(td['tickType'], 'n/a')
|
||||
|
||||
|
@ -840,7 +854,7 @@ async def fill_bars(
|
|||
first_bars: list,
|
||||
shm: 'ShmArray', # type: ignore # noqa
|
||||
# count: int = 20, # NOTE: any more and we'll overrun underlying buffer
|
||||
count: int = 6, # NOTE: any more and we'll overrun the underlying buffer
|
||||
count: int = 10, # NOTE: any more and we'll overrun the underlying buffer
|
||||
) -> None:
|
||||
"""Fill historical bars into shared mem / storage afap.
|
||||
|
||||
|
@ -904,6 +918,62 @@ asset_type_map = {
|
|||
}
|
||||
|
||||
|
||||
|
||||
_quote_streams: Dict[str, trio.abc.ReceiveStream] = {}
|
||||
|
||||
|
||||
async def stream_quotes(
|
||||
client,
|
||||
symbol: str,
|
||||
opts: Tuple[int] = ('375', '233', '236'),
|
||||
contract: Optional[Contract] = None,
|
||||
) -> None:
|
||||
"""Stream a ticker using the std L1 api.
|
||||
"""
|
||||
contract = contract or (await client.find_contract(symbol))
|
||||
ticker: Ticker = client.ib.reqMktData(contract, ','.join(opts))
|
||||
|
||||
chans = _quote_streams.get(symbol)
|
||||
|
||||
if feed:
|
||||
|
||||
# if we already have a cached feed deliver a rx side clone to
|
||||
# consumer
|
||||
to_trio, from_aio = chans
|
||||
return from_aio.clone()
|
||||
|
||||
|
||||
# define a simple queue push routine that streams quote packets
|
||||
# to trio over the ``to_trio`` memory channel.
|
||||
to_trio, from_aio = trio.open_memory_channel(2**8) # type: ignore
|
||||
|
||||
def push(t):
|
||||
"""Push quotes to trio task.
|
||||
|
||||
"""
|
||||
# log.debug(t)
|
||||
try:
|
||||
to_trio.send_nowait(t)
|
||||
except trio.BrokenResourceError:
|
||||
# XXX: eventkit's ``Event.emit()`` for whatever redic
|
||||
# reason will catch and ignore regular exceptions
|
||||
# resulting in tracebacks spammed to console..
|
||||
# Manually do the dereg ourselves.
|
||||
ticker.updateEvent.disconnect(push)
|
||||
log.error(f"Disconnected stream for `{symbol}`")
|
||||
self.ib.cancelMktData(contract)
|
||||
|
||||
# decouple broadcast mem chan
|
||||
self._feeds.pop(symbol, None)
|
||||
|
||||
ticker.updateEvent.connect(push)
|
||||
|
||||
# cache feed for later consumers
|
||||
_quote_streams[symbol] = to_trio, from_aio
|
||||
|
||||
return from_aio
|
||||
|
||||
|
||||
# TODO: figure out how to share quote feeds sanely despite
|
||||
# the wacky ``ib_insync`` api.
|
||||
# @tractor.msg.pub
|
||||
|
@ -1058,6 +1128,7 @@ async def stream_quotes(
|
|||
# wait for real volume on feed (trading might be closed)
|
||||
|
||||
async with aclosing(stream):
|
||||
|
||||
async for ticker in stream:
|
||||
|
||||
# for a real volume contract we rait for the first
|
||||
|
@ -1081,11 +1152,12 @@ async def stream_quotes(
|
|||
|
||||
# enter stream loop
|
||||
try:
|
||||
async with stream:
|
||||
await stream_and_write(
|
||||
stream=stream,
|
||||
calc_price=calc_price,
|
||||
topic=topic,
|
||||
writer_already_exists=writer_already_exists,
|
||||
write_shm=not writer_already_exists,
|
||||
shm=shm,
|
||||
suffix=suffix,
|
||||
ctx=ctx,
|
||||
|
@ -1094,12 +1166,14 @@ async def stream_quotes(
|
|||
if not writer_already_exists:
|
||||
_local_buffer_writers[key] = False
|
||||
|
||||
stream.close()
|
||||
|
||||
|
||||
async def stream_and_write(
|
||||
stream,
|
||||
calc_price: bool,
|
||||
topic: str,
|
||||
writer_already_exists: bool,
|
||||
write_shm: bool,
|
||||
suffix: str,
|
||||
ctx: tractor.Context,
|
||||
shm: Optional['SharedArray'], # noqa
|
||||
|
@ -1108,6 +1182,7 @@ async def stream_and_write(
|
|||
|
||||
"""
|
||||
# real-time stream
|
||||
async with stream:
|
||||
async for ticker in stream:
|
||||
|
||||
# print(ticker.vwap)
|
||||
|
@ -1125,7 +1200,7 @@ async def stream_and_write(
|
|||
|
||||
# if we are the lone tick writer start writing
|
||||
# the buffer with appropriate trade data
|
||||
if not writer_already_exists:
|
||||
if write_shm:
|
||||
for tick in iterticks(quote, types=('trade', 'utrade',)):
|
||||
last = tick['price']
|
||||
|
||||
|
|
Loading…
Reference in New Issue