复制 local 代码到 serve
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
"""Internal provider schema column lists."""
|
||||
from __future__ import annotations
|
||||
|
||||
DAILY_COLUMNS = [
|
||||
"symbol", "asset_type", "source", "date", "open", "high", "low", "close",
|
||||
"volume", "amount", "pre_close", "change_pct",
|
||||
]
|
||||
|
||||
ADJ_FACTOR_COLUMNS = ["symbol", "asset_type", "source", "trade_date", "ex_factor"]
|
||||
|
||||
INSTRUMENT_COLUMNS = [
|
||||
"symbol", "name", "exchange", "asset_type", "source", "list_date", "status",
|
||||
]
|
||||
|
||||
MINUTE_COLUMNS = [
|
||||
"symbol", "asset_type", "source", "datetime", "open", "high", "low", "close",
|
||||
"volume", "amount", "freq",
|
||||
]
|
||||
Reference in New Issue
Block a user