aad34202f1
Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
557 B
Python
19 lines
557 B
Python
"""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",
|
|
]
|