Compare commits
9 Commits
dc2eee89b0
...
07502aab1e
Author | SHA1 | Date |
---|---|---|
|
07502aab1e | |
|
492d673ec0 | |
|
cf9cb67b5d | |
|
897d51d564 | |
|
17e29715af | |
|
68940e8a73 | |
|
42fdb204dc | |
|
0ea0f3f293 | |
|
b901dce551 |
|
@ -574,16 +574,19 @@ async def start_backfill(
|
|||
f'{next_start_dt} -> {last_start_dt}'
|
||||
)
|
||||
|
||||
# always drop the src asset token for
|
||||
# NOTE, always drop the src asset token for
|
||||
# non-currency-pair like market types (for now)
|
||||
#
|
||||
# THAT IS, for now our table key schema is NOT
|
||||
# including the dst[/src] source asset token. SO,
|
||||
# 'tsla.nasdaq.ib' over 'tsla/usd.nasdaq.ib' for
|
||||
# historical reasons ONLY.
|
||||
if mkt.dst.atype not in {
|
||||
'crypto',
|
||||
'crypto_currency',
|
||||
'fiat', # a "forex pair"
|
||||
'perpetual_future', # stupid "perps" from cex land
|
||||
}:
|
||||
# for now, our table key schema is not including
|
||||
# the dst[/src] source asset token.
|
||||
col_sym_key: str = mkt.get_fqme(
|
||||
delim_char='',
|
||||
without_src=True,
|
||||
|
|
Loading…
Reference in New Issue