Compare commits
9 Commits
07502aab1e
...
dc2eee89b0
Author | SHA1 | Date |
---|---|---|
|
dc2eee89b0 | |
|
2a9fdec253 | |
|
8f4697bc19 | |
|
32fe5c4942 | |
|
6e9759a7f1 | |
|
07b13a99b9 | |
|
2377fec665 | |
|
4de11e717c | |
|
525b7df3ee |
|
@ -574,19 +574,16 @@ async def start_backfill(
|
||||||
f'{next_start_dt} -> {last_start_dt}'
|
f'{next_start_dt} -> {last_start_dt}'
|
||||||
)
|
)
|
||||||
|
|
||||||
# NOTE, always drop the src asset token for
|
# always drop the src asset token for
|
||||||
# non-currency-pair like market types (for now)
|
# 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 {
|
if mkt.dst.atype not in {
|
||||||
'crypto',
|
'crypto',
|
||||||
'crypto_currency',
|
'crypto_currency',
|
||||||
'fiat', # a "forex pair"
|
'fiat', # a "forex pair"
|
||||||
'perpetual_future', # stupid "perps" from cex land
|
'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(
|
col_sym_key: str = mkt.get_fqme(
|
||||||
delim_char='',
|
delim_char='',
|
||||||
without_src=True,
|
without_src=True,
|
||||||
|
|
Loading…
Reference in New Issue