重置项目

This commit is contained in:
2026-07-04 15:59:20 +08:00
parent 374e587f2d
commit 648a8b7f1c
224 changed files with 19700 additions and 9547 deletions
@@ -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",
]