Begin to use `@tractor.msg.pub` throughout streaming API
Since the new FSP system will require time aligned data amongst actors, it makes sense to share broker data feeds as much as possible on a local system. There doesn't seem to be downside to this approach either since if not fanning-out in our code, the broker (server) has to do it anyway (and who knows how junk their implementation is) though with more clients, sockets etc. in memory on our end. It also preps the code for introducing a more "serious" pub-sub systems like zeromq/nanomessage.ib_backend
parent
0bf265a96f
commit
b7c924046a
|
@ -8,7 +8,7 @@ built on it) and thus actor aware API calls must be spawned with
|
||||||
from contextlib import asynccontextmanager
|
from contextlib import asynccontextmanager
|
||||||
from dataclasses import asdict
|
from dataclasses import asdict
|
||||||
from functools import partial
|
from functools import partial
|
||||||
from typing import List, Dict, Any, Tuple, Optional, AsyncGenerator
|
from typing import List, Dict, Any, Tuple, Optional, AsyncGenerator, Callable
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
import inspect
|
import inspect
|
||||||
|
@ -224,10 +224,14 @@ class Client:
|
||||||
# use heuristics to figure out contract "type"
|
# use heuristics to figure out contract "type"
|
||||||
sym, exch = symbol.upper().split('.')
|
sym, exch = symbol.upper().split('.')
|
||||||
|
|
||||||
|
# TODO: metadata system for all these exchange rules..
|
||||||
|
if exch in ('PURE',):
|
||||||
|
currency = 'CAD'
|
||||||
|
|
||||||
if exch in ('GLOBEX', 'NYMEX', 'CME', 'CMECRYPTO'):
|
if exch in ('GLOBEX', 'NYMEX', 'CME', 'CMECRYPTO'):
|
||||||
con = await self.get_cont_fute(symbol=sym, exchange=exch)
|
con = await self.get_cont_fute(symbol=sym, exchange=exch)
|
||||||
|
|
||||||
elif exch == 'CMDTY': # eg. XAUSUSD.CMDTY
|
elif exch == 'CMDTY': # eg. XAUUSD.CMDTY
|
||||||
con_kwargs, bars_kwargs = _adhoc_cmdty_data_map[sym]
|
con_kwargs, bars_kwargs = _adhoc_cmdty_data_map[sym]
|
||||||
con = ibis.Commodity(**con_kwargs)
|
con = ibis.Commodity(**con_kwargs)
|
||||||
con.bars_kwargs = bars_kwargs
|
con.bars_kwargs = bars_kwargs
|
||||||
|
@ -356,7 +360,10 @@ async def _trio_run_client_method(
|
||||||
|
|
||||||
|
|
||||||
class _MethodProxy:
|
class _MethodProxy:
|
||||||
def __init__(self, portal: tractor._portal.Portal):
|
def __init__(
|
||||||
|
self,
|
||||||
|
portal: tractor._portal.Portal
|
||||||
|
) -> None:
|
||||||
self._portal = portal
|
self._portal = portal
|
||||||
|
|
||||||
async def _run_method(
|
async def _run_method(
|
||||||
|
@ -420,9 +427,8 @@ def normalize(
|
||||||
|
|
||||||
ticker.ticks = new_ticks
|
ticker.ticks = new_ticks
|
||||||
|
|
||||||
# some contracts don't have volume so we may want to
|
# some contracts don't have volume so we may want to calculate
|
||||||
# calculate a midpoint price based on data we can acquire
|
# a midpoint price based on data we can acquire (such as bid / ask)
|
||||||
# (such as bid / ask)
|
|
||||||
if calc_price:
|
if calc_price:
|
||||||
ticker.ticks.append(
|
ticker.ticks.append(
|
||||||
{'type': 'trade', 'price': ticker.marketPrice()}
|
{'type': 'trade', 'price': ticker.marketPrice()}
|
||||||
|
@ -439,7 +445,9 @@ def normalize(
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
||||||
|
@tractor.msg.pub
|
||||||
async def stream_quotes(
|
async def stream_quotes(
|
||||||
|
get_topics: Callable,
|
||||||
symbols: List[str],
|
symbols: List[str],
|
||||||
loglevel: str = None,
|
loglevel: str = None,
|
||||||
) -> AsyncGenerator[str, Dict[str, Any]]:
|
) -> AsyncGenerator[str, Dict[str, Any]]:
|
||||||
|
@ -451,24 +459,29 @@ async def stream_quotes(
|
||||||
# XXX: required to propagate ``tractor`` loglevel to piker logging
|
# XXX: required to propagate ``tractor`` loglevel to piker logging
|
||||||
get_console_log(loglevel or tractor.current_actor().loglevel)
|
get_console_log(loglevel or tractor.current_actor().loglevel)
|
||||||
|
|
||||||
|
# TODO: support multiple subscriptions
|
||||||
|
sym = symbols[0]
|
||||||
|
|
||||||
stream = await tractor.to_asyncio.run_task(
|
stream = await tractor.to_asyncio.run_task(
|
||||||
_trio_run_client_method,
|
_trio_run_client_method,
|
||||||
method='stream_ticker',
|
method='stream_ticker',
|
||||||
symbol=symbols[0],
|
symbol=sym,
|
||||||
)
|
)
|
||||||
async with aclosing(stream):
|
async with aclosing(stream):
|
||||||
# first quote can be ignored as a 2nd with newer data is sent?
|
# first quote can be ignored as a 2nd with newer data is sent?
|
||||||
first_ticker = await stream.__anext__()
|
first_ticker = await stream.__anext__()
|
||||||
# quote_cache = {}
|
|
||||||
|
|
||||||
if type(first_ticker.contract) not in (ibis.Commodity,):
|
if type(first_ticker.contract) not in (ibis.Commodity,):
|
||||||
|
suffix = 'exchange'
|
||||||
|
|
||||||
calc_price = False # should be real volume for contract
|
calc_price = False # should be real volume for contract
|
||||||
|
|
||||||
data = normalize(first_ticker)
|
quote = normalize(first_ticker)
|
||||||
|
log.debug(f"First ticker received {quote}")
|
||||||
|
|
||||||
log.debug(f"First ticker received {data}")
|
con = quote['contract']
|
||||||
yield data
|
topic = '.'.join((con['symbol'], con[suffix])).lower()
|
||||||
|
yield {topic: quote}
|
||||||
|
|
||||||
async for ticker in stream:
|
async for ticker in stream:
|
||||||
# spin consuming tickers until we get a real market datum
|
# spin consuming tickers until we get a real market datum
|
||||||
|
@ -476,19 +489,27 @@ async def stream_quotes(
|
||||||
log.debug(f"New unsent ticker: {ticker}")
|
log.debug(f"New unsent ticker: {ticker}")
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
yield normalize(ticker)
|
|
||||||
log.debug("Received first real volume tick")
|
log.debug("Received first real volume tick")
|
||||||
|
quote = normalize(ticker)
|
||||||
|
topic = '.'.join((con['symbol'], con[suffix])).lower()
|
||||||
|
yield {topic: quote}
|
||||||
|
|
||||||
# XXX: this works because we don't use
|
# XXX: this works because we don't use
|
||||||
# ``aclosing()`` above?
|
# ``aclosing()`` above?
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
# commodities don't have an exchange name for some reason?
|
||||||
|
suffix = 'secType'
|
||||||
calc_price = True
|
calc_price = True
|
||||||
|
|
||||||
async for ticker in stream:
|
async for ticker in stream:
|
||||||
yield normalize(
|
quote = normalize(
|
||||||
ticker,
|
ticker,
|
||||||
calc_price=calc_price
|
calc_price=calc_price
|
||||||
)
|
)
|
||||||
|
con = quote['contract']
|
||||||
|
topic = '.'.join((con['symbol'], con[suffix])).lower()
|
||||||
|
yield {topic: quote}
|
||||||
|
|
||||||
# ugh, clear ticks since we've consumed them
|
# ugh, clear ticks since we've consumed them
|
||||||
ticker.ticks = []
|
ticker.ticks = []
|
||||||
|
|
|
@ -62,7 +62,6 @@ async def maybe_spawn_brokerd(
|
||||||
dname = f'brokerd.{brokername}'
|
dname = f'brokerd.{brokername}'
|
||||||
async with tractor.find_actor(dname) as portal:
|
async with tractor.find_actor(dname) as portal:
|
||||||
# WTF: why doesn't this work?
|
# WTF: why doesn't this work?
|
||||||
log.info(f"YOYOYO {__name__}")
|
|
||||||
if portal is not None:
|
if portal is not None:
|
||||||
yield portal
|
yield portal
|
||||||
else:
|
else:
|
||||||
|
@ -89,7 +88,7 @@ async def maybe_spawn_brokerd(
|
||||||
async def open_feed(
|
async def open_feed(
|
||||||
name: str,
|
name: str,
|
||||||
symbols: Sequence[str],
|
symbols: Sequence[str],
|
||||||
loglevel: str = 'info',
|
loglevel: Optional[str] = None,
|
||||||
) -> AsyncIterator[Dict[str, Any]]:
|
) -> AsyncIterator[Dict[str, Any]]:
|
||||||
"""Open a "data feed" which provides streamed real-time quotes.
|
"""Open a "data feed" which provides streamed real-time quotes.
|
||||||
"""
|
"""
|
||||||
|
@ -98,6 +97,9 @@ async def open_feed(
|
||||||
except ImportError:
|
except ImportError:
|
||||||
mod = get_ingestormod(name)
|
mod = get_ingestormod(name)
|
||||||
|
|
||||||
|
if loglevel is None:
|
||||||
|
loglevel = tractor.current_actor().loglevel
|
||||||
|
|
||||||
async with maybe_spawn_brokerd(
|
async with maybe_spawn_brokerd(
|
||||||
mod.name,
|
mod.name,
|
||||||
loglevel=loglevel,
|
loglevel=loglevel,
|
||||||
|
@ -106,6 +108,7 @@ async def open_feed(
|
||||||
mod.__name__,
|
mod.__name__,
|
||||||
'stream_quotes',
|
'stream_quotes',
|
||||||
symbols=symbols,
|
symbols=symbols,
|
||||||
|
topics=symbols,
|
||||||
)
|
)
|
||||||
# Feed is required to deliver an initial quote asap.
|
# Feed is required to deliver an initial quote asap.
|
||||||
# TODO: should we timeout and raise a more explicit error?
|
# TODO: should we timeout and raise a more explicit error?
|
||||||
|
|
Loading…
Reference in New Issue