Add a symbol "front feed" helper

fsp_ui_mod
Tyler Goodlet 2022-01-11 16:20:26 -05:00
parent c3c1e14cf4
commit 9813cf4169
1 changed files with 12 additions and 0 deletions

View File

@ -106,6 +106,18 @@ class Symbol(BaseModel):
mult = 1 / self.tick_size
return round(value * mult) / mult
def front_feed(self) -> tuple[str, str]:
'''
Return the "current" feed key for this symbol.
(i.e. the broker + symbol key in a tuple).
'''
return (
list(self.broker_info.keys())[0],
self.key,
)
@validate_arguments
def mk_symbol(