mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-19 10:24:35 +08:00
Compare commits
2 Commits
8355990ac5
...
migrate_gy
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2276552c1f | ||
|
|
9eee6d33b0 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -22,7 +22,6 @@ dist/
|
|||||||
qlib/VERSION.txt
|
qlib/VERSION.txt
|
||||||
qlib/data/_libs/expanding.cpp
|
qlib/data/_libs/expanding.cpp
|
||||||
qlib/data/_libs/rolling.cpp
|
qlib/data/_libs/rolling.cpp
|
||||||
qlib/_version.py
|
|
||||||
examples/estimator/estimator_example/
|
examples/estimator/estimator_example/
|
||||||
examples/rl/data/
|
examples/rl/data/
|
||||||
examples/rl/checkpoints/
|
examples/rl/checkpoints/
|
||||||
|
|||||||
25
Makefile
25
Makefile
@@ -74,37 +74,34 @@ prerequisite:
|
|||||||
|
|
||||||
# Install the package in editable mode.
|
# Install the package in editable mode.
|
||||||
dependencies:
|
dependencies:
|
||||||
python -m pip install --no-cache-dir -e .
|
python -m pip install -e .
|
||||||
|
|
||||||
lightgbm:
|
lightgbm:
|
||||||
python -m pip install --no-cache-dir lightgbm --prefer-binary
|
python -m pip install lightgbm --prefer-binary
|
||||||
|
|
||||||
rl:
|
rl:
|
||||||
python -m pip install --no-cache-dir -e .[rl]
|
python -m pip install -e .[rl]
|
||||||
|
|
||||||
develop:
|
develop:
|
||||||
python -m pip install --no-cache-dir -e .[dev]
|
python -m pip install -e .[dev]
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
python -m pip install --no-cache-dir -e .[lint]
|
python -m pip install -e .[lint]
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
python -m pip install --no-cache-dir -e .[docs]
|
python -m pip install -e .[docs]
|
||||||
|
|
||||||
package:
|
package:
|
||||||
python -m pip install --no-cache-dir -e .[package]
|
python -m pip install -e .[package]
|
||||||
|
|
||||||
test:
|
test:
|
||||||
python -m pip install --no-cache-dir -e .[test]
|
python -m pip install -e .[test]
|
||||||
|
|
||||||
analysis:
|
analysis:
|
||||||
python -m pip install --no-cache-dir -e .[analysis]
|
python -m pip install -e .[analysis]
|
||||||
|
|
||||||
client:
|
|
||||||
python -m pip install --no-cache-dir -e .[client]
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
python -m pip install --no-cache-dir -e .[pywinpty,dev,lint,docs,package,test,analysis,rl]
|
python -m pip install -e .[pywinpty,dev,lint,docs,package,test,analysis,rl]
|
||||||
|
|
||||||
install: prerequisite dependencies
|
install: prerequisite dependencies
|
||||||
|
|
||||||
@@ -116,7 +113,7 @@ dev: prerequisite all
|
|||||||
|
|
||||||
# Check lint with black.
|
# Check lint with black.
|
||||||
black:
|
black:
|
||||||
black . -l 120 --check --diff --exclude qlib/_version.py
|
black . -l 120 --check --diff
|
||||||
|
|
||||||
# Check code folder with pylint.
|
# Check code folder with pylint.
|
||||||
# TODO: These problems we will solve in the future. Important among them are: W0221, W0223, W0237, E1102
|
# TODO: These problems we will solve in the future. Important among them are: W0221, W0223, W0237, E1102
|
||||||
|
|||||||
@@ -324,7 +324,7 @@ We recommend users to prepare their own data if they have a high-quality dataset
|
|||||||
```
|
```
|
||||||
2. Start a new Docker container
|
2. Start a new Docker container
|
||||||
```bash
|
```bash
|
||||||
docker run -it --name <container name> -v <Mounted local directory>:/app pyqlib/qlib_image_stable:stable
|
docker run -it --name <container name> -v <Mounted local directory>:/app qlib_image_stable
|
||||||
```
|
```
|
||||||
3. At this point you are in the docker environment and can run the qlib scripts. An example:
|
3. At this point you are in the docker environment and can run the qlib scripts. An example:
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ Example
|
|||||||
|
|
||||||
.. math::
|
.. math::
|
||||||
|
|
||||||
DEA = EMA(DIF, 9)
|
DEA = \frac{EMA(DIF, 9)}{CLOSE}
|
||||||
|
|
||||||
Users can use ``Data Handler`` to build formulaic alphas `MACD` in qlib:
|
Users can use ``Data Handler`` to build formulaic alphas `MACD` in qlib:
|
||||||
|
|
||||||
@@ -51,7 +51,7 @@ Users can use ``Data Handler`` to build formulaic alphas `MACD` in qlib:
|
|||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
>> from qlib.data.dataset.loader import QlibDataLoader
|
>> from qlib.data.dataset.loader import QlibDataLoader
|
||||||
>> MACD_EXP = '2 * ((EMA($close, 12) - EMA($close, 26))/$close - EMA((EMA($close, 12) - EMA($close, 26))/$close, 9))'
|
>> MACD_EXP = '(EMA($close, 12) - EMA($close, 26))/$close - EMA((EMA($close, 12) - EMA($close, 26))/$close, 9)/$close'
|
||||||
>> fields = [MACD_EXP] # MACD
|
>> fields = [MACD_EXP] # MACD
|
||||||
>> names = ['MACD']
|
>> names = ['MACD']
|
||||||
>> labels = ['Ref($close, -2)/Ref($close, -1) - 1'] # label
|
>> labels = ['Ref($close, -2)/Ref($close, -1) - 1'] # label
|
||||||
@@ -66,17 +66,17 @@ Users can use ``Data Handler`` to build formulaic alphas `MACD` in qlib:
|
|||||||
feature label
|
feature label
|
||||||
MACD LABEL
|
MACD LABEL
|
||||||
datetime instrument
|
datetime instrument
|
||||||
2010-01-04 SH600000 0.008781 -0.019672
|
2010-01-04 SH600000 -0.011547 -0.019672
|
||||||
SH600004 0.006699 -0.014721
|
SH600004 0.002745 -0.014721
|
||||||
SH600006 0.005714 0.002911
|
SH600006 0.010133 0.002911
|
||||||
SH600008 0.000798 0.009818
|
SH600008 -0.001113 0.009818
|
||||||
SH600009 0.017015 -0.017758
|
SH600009 0.025878 -0.017758
|
||||||
... ... ...
|
... ... ...
|
||||||
2017-12-29 SZ300124 0.015071 -0.005074
|
2017-12-29 SZ300124 0.007306 -0.005074
|
||||||
SZ300136 -0.015466 0.056352
|
SZ300136 -0.013492 0.056352
|
||||||
SZ300144 0.013082 0.011853
|
SZ300144 -0.000966 0.011853
|
||||||
SZ300251 -0.001026 0.021739
|
SZ300251 0.004383 0.021739
|
||||||
SZ300315 -0.007559 0.012455
|
SZ300315 -0.030557 0.012455
|
||||||
|
|
||||||
Reference
|
Reference
|
||||||
=========
|
=========
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ For example, it looks quite long and complicated:
|
|||||||
|
|
||||||
|
|
||||||
But using string is not the only way to implement the expression. You can also implement expression by code.
|
But using string is not the only way to implement the expression. You can also implement expression by code.
|
||||||
Here is an example which does the same thing as above examples.
|
Here is an exmaple which does the same thing as above examples.
|
||||||
|
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ The Custom models need to inherit `qlib.model.base.Model <../reference/api.html#
|
|||||||
)
|
)
|
||||||
|
|
||||||
- Override the `predict` method
|
- Override the `predict` method
|
||||||
- The parameters must include the parameter `dataset`, which will be used to get the test dataset.
|
- The parameters must include the parameter `dataset`, which will be userd to get the test dataset.
|
||||||
- Return the `prediction score`.
|
- Return the `prediction score`.
|
||||||
- Please refer to `Model API <../reference/api.html#module-qlib.model.base>`_ for the parameter types of the fit method.
|
- Please refer to `Model API <../reference/api.html#module-qlib.model.base>`_ for the parameter types of the fit method.
|
||||||
- Code Example: In the following example, users need to use `LightGBM` to predict the label(such as `preds`) of test data `x_test` and return it.
|
- Code Example: In the following example, users need to use `LightGBM` to predict the label(such as `preds`) of test data `x_test` and return it.
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ dependencies = [
|
|||||||
"pymongo",
|
"pymongo",
|
||||||
"loguru",
|
"loguru",
|
||||||
"lightgbm",
|
"lightgbm",
|
||||||
"gym",
|
"gymnasium<=0.26.2",
|
||||||
"cvxpy",
|
"cvxpy",
|
||||||
"joblib",
|
"joblib",
|
||||||
"matplotlib",
|
"matplotlib",
|
||||||
@@ -69,10 +69,8 @@ rl = [
|
|||||||
"torch",
|
"torch",
|
||||||
"numpy<2.0.0",
|
"numpy<2.0.0",
|
||||||
]
|
]
|
||||||
# We exclude black version 26.1.0 due to known issues with nbqa when formatting Jupyter notebooks,
|
|
||||||
# which can cause false-positive --check results and inconsistent notebook formatting.
|
|
||||||
lint = [
|
lint = [
|
||||||
"black!=26.1.0",
|
"black",
|
||||||
"pylint",
|
"pylint",
|
||||||
"mypy<1.5.0",
|
"mypy<1.5.0",
|
||||||
"flake8",
|
"flake8",
|
||||||
@@ -103,10 +101,6 @@ analysis = [
|
|||||||
"plotly",
|
"plotly",
|
||||||
"statsmodels",
|
"statsmodels",
|
||||||
]
|
]
|
||||||
client = [
|
|
||||||
"python-socketio<6",
|
|
||||||
"tables",
|
|
||||||
]
|
|
||||||
|
|
||||||
# In the process of releasing a new version, when checking the manylinux package with twine, an error is reported:
|
# In the process of releasing a new version, when checking the manylinux package with twine, an error is reported:
|
||||||
# InvalidDistribution: Invalid distribution metadata: unrecognized or malformed field 'license-file'
|
# InvalidDistribution: Invalid distribution metadata: unrecognized or malformed field 'license-file'
|
||||||
@@ -123,4 +117,3 @@ qrun = "qlib.cli.run:run"
|
|||||||
[tool.setuptools_scm]
|
[tool.setuptools_scm]
|
||||||
local_scheme = "no-local-version"
|
local_scheme = "no-local-version"
|
||||||
version_scheme = "guess-next-dev"
|
version_scheme = "guess-next-dev"
|
||||||
write_to = "qlib/_version.py"
|
|
||||||
|
|||||||
@@ -4,9 +4,6 @@ from pathlib import Path
|
|||||||
|
|
||||||
from setuptools_scm import get_version
|
from setuptools_scm import get_version
|
||||||
|
|
||||||
try:
|
|
||||||
from ._version import version as __version__
|
|
||||||
except ImportError:
|
|
||||||
__version__ = get_version(root="..", relative_to=__file__)
|
__version__ = get_version(root="..", relative_to=__file__)
|
||||||
__version__bak = __version__ # This version is backup for QlibConfig.reset_qlib_version
|
__version__bak = __version__ # This version is backup for QlibConfig.reset_qlib_version
|
||||||
import logging
|
import logging
|
||||||
@@ -143,9 +140,6 @@ def _mount_nfs_uri(provider_uri, mount_path, auto_mount: bool = False):
|
|||||||
_command_log = [line for line in _command_log if _remote_uri in line]
|
_command_log = [line for line in _command_log if _remote_uri in line]
|
||||||
if len(_command_log) > 0:
|
if len(_command_log) > 0:
|
||||||
for _c in _command_log:
|
for _c in _command_log:
|
||||||
if isinstance(_c, str):
|
|
||||||
_temp_mount = _c.split(" ")[2]
|
|
||||||
else:
|
|
||||||
_temp_mount = _c.decode("utf-8").split(" ")[2]
|
_temp_mount = _c.decode("utf-8").split(" ")[2]
|
||||||
_temp_mount = _temp_mount[:-1] if _temp_mount.endswith("/") else _temp_mount
|
_temp_mount = _temp_mount[:-1] if _temp_mount.endswith("/") else _temp_mount
|
||||||
if _temp_mount == _mount_path:
|
if _temp_mount == _mount_path:
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ def workflow(config_path, experiment_name="workflow", uri_folder="mlruns"):
|
|||||||
"""
|
"""
|
||||||
This is a Qlib CLI entrance.
|
This is a Qlib CLI entrance.
|
||||||
User can run the whole Quant research workflow defined by a configure file
|
User can run the whole Quant research workflow defined by a configure file
|
||||||
- the code is located here ``qlib/cli/run.py``
|
- the code is located here ``qlib/cli/run.py`
|
||||||
|
|
||||||
User can specify a base_config file in your workflow.yml file by adding "BASE_CONFIG_PATH".
|
User can specify a base_config file in your workflow.yml file by adding "BASE_CONFIG_PATH".
|
||||||
Qlib will load the configuration in BASE_CONFIG_PATH first, and the user only needs to update the custom fields
|
Qlib will load the configuration in BASE_CONFIG_PATH first, and the user only needs to update the custom fields
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ class LGBModel(ModelFT, LightGBMFInt):
|
|||||||
w = reweighter.reweight(df)
|
w = reweighter.reweight(df)
|
||||||
else:
|
else:
|
||||||
raise ValueError("Unsupported reweighter type.")
|
raise ValueError("Unsupported reweighter type.")
|
||||||
ds_l.append((lgb.Dataset(x.values, label=y, weight=w, free_raw_data=False), key))
|
ds_l.append((lgb.Dataset(x.values, label=y, weight=w), key))
|
||||||
return ds_l
|
return ds_l
|
||||||
|
|
||||||
def fit(
|
def fit(
|
||||||
@@ -109,10 +109,8 @@ class LGBModel(ModelFT, LightGBMFInt):
|
|||||||
verbose level
|
verbose level
|
||||||
"""
|
"""
|
||||||
# Based on existing model and finetune by train more rounds
|
# Based on existing model and finetune by train more rounds
|
||||||
ds_l = self._prepare_data(dataset, reweighter)
|
dtrain, _ = self._prepare_data(dataset, reweighter) # pylint: disable=W0632
|
||||||
dtrain, _ = ds_l[0]
|
if dtrain.empty:
|
||||||
|
|
||||||
if dtrain.construct().num_data() == 0:
|
|
||||||
raise ValueError("Empty data from dataset, please check your dataset config.")
|
raise ValueError("Empty data from dataset, please check your dataset config.")
|
||||||
verbose_eval_callback = lgb.log_evaluation(period=verbose_eval)
|
verbose_eval_callback = lgb.log_evaluation(period=verbose_eval)
|
||||||
self.model = lgb.train(
|
self.model = lgb.train(
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import os
|
|||||||
import gc
|
import gc
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from packaging import version
|
|
||||||
from typing import Callable, Optional, Text, Union
|
from typing import Callable, Optional, Text, Union
|
||||||
from sklearn.metrics import roc_auc_score, mean_squared_error
|
from sklearn.metrics import roc_auc_score, mean_squared_error
|
||||||
|
|
||||||
@@ -149,7 +148,7 @@ class DNNModelPytorch(Model):
|
|||||||
if scheduler == "default":
|
if scheduler == "default":
|
||||||
# In torch version 2.7.0, the verbose parameter has been removed. Reference Link:
|
# In torch version 2.7.0, the verbose parameter has been removed. Reference Link:
|
||||||
# https://github.com/pytorch/pytorch/pull/147301/files#diff-036a7470d5307f13c9a6a51c3a65dd014f00ca02f476c545488cd856bea9bcf2L1313
|
# https://github.com/pytorch/pytorch/pull/147301/files#diff-036a7470d5307f13c9a6a51c3a65dd014f00ca02f476c545488cd856bea9bcf2L1313
|
||||||
if version.parse(str(torch.__version__).split("+", maxsplit=1)[0]) <= version.parse("2.6.0"):
|
if str(torch.__version__).split("+", maxsplit=1)[0] <= "2.6.0":
|
||||||
# Reduce learning rate when loss has stopped decrease
|
# Reduce learning rate when loss has stopped decrease
|
||||||
self.scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau( # pylint: disable=E1123
|
self.scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau( # pylint: disable=E1123
|
||||||
self.train_optimizer,
|
self.train_optimizer,
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ from qlib.model.meta.task import MetaTask
|
|||||||
from qlib.model.trainer import TrainerR
|
from qlib.model.trainer import TrainerR
|
||||||
from qlib.typehint import Literal
|
from qlib.typehint import Literal
|
||||||
from qlib.utils import init_instance_by_config
|
from qlib.utils import init_instance_by_config
|
||||||
from qlib.utils.pickle_utils import restricted_pickle_load
|
|
||||||
from qlib.workflow import R
|
from qlib.workflow import R
|
||||||
from qlib.workflow.task.utils import replace_task_handler_with_cache
|
from qlib.workflow.task.utils import replace_task_handler_with_cache
|
||||||
|
|
||||||
@@ -299,7 +298,7 @@ class DDGDA(Rolling):
|
|||||||
# but their task test segment are not aligned! It worked in my previous experiment.
|
# but their task test segment are not aligned! It worked in my previous experiment.
|
||||||
# So the misalignment will not affect the effectiveness of the method.
|
# So the misalignment will not affect the effectiveness of the method.
|
||||||
with self._internal_data_path.open("rb") as f:
|
with self._internal_data_path.open("rb") as f:
|
||||||
internal_data = restricted_pickle_load(f)
|
internal_data = pickle.load(f)
|
||||||
|
|
||||||
md = MetaDatasetDS(exp_name=internal_data, **kwargs)
|
md = MetaDatasetDS(exp_name=internal_data, **kwargs)
|
||||||
|
|
||||||
@@ -361,7 +360,7 @@ class DDGDA(Rolling):
|
|||||||
)
|
)
|
||||||
|
|
||||||
with self._internal_data_path.open("rb") as f:
|
with self._internal_data_path.open("rb") as f:
|
||||||
internal_data = restricted_pickle_load(f)
|
internal_data = pickle.load(f)
|
||||||
mds = MetaDatasetDS(exp_name=internal_data, **kwargs)
|
mds = MetaDatasetDS(exp_name=internal_data, **kwargs)
|
||||||
|
|
||||||
# 3) meta model make inference and get new qlib task
|
# 3) meta model make inference and get new qlib task
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import os
|
|||||||
import yaml
|
import yaml
|
||||||
import json
|
import json
|
||||||
import copy
|
import copy
|
||||||
|
import pickle
|
||||||
import logging
|
import logging
|
||||||
import importlib
|
import importlib
|
||||||
import subprocess
|
import subprocess
|
||||||
@@ -17,7 +18,6 @@ import numpy as np
|
|||||||
from abc import abstractmethod
|
from abc import abstractmethod
|
||||||
|
|
||||||
from ...log import get_module_logger, TimeInspector
|
from ...log import get_module_logger, TimeInspector
|
||||||
from ...utils.pickle_utils import restricted_pickle_load
|
|
||||||
from hyperopt import fmin, tpe
|
from hyperopt import fmin, tpe
|
||||||
from hyperopt import STATUS_OK, STATUS_FAIL
|
from hyperopt import STATUS_OK, STATUS_FAIL
|
||||||
|
|
||||||
@@ -136,7 +136,7 @@ class QLibTuner(Tuner):
|
|||||||
exp_result_dir = os.path.join(self.ex_dir, QLibTuner.EXP_RESULT_DIR.format(estimator_ex_id))
|
exp_result_dir = os.path.join(self.ex_dir, QLibTuner.EXP_RESULT_DIR.format(estimator_ex_id))
|
||||||
exp_result_path = os.path.join(exp_result_dir, QLibTuner.EXP_RESULT_NAME)
|
exp_result_path = os.path.join(exp_result_dir, QLibTuner.EXP_RESULT_NAME)
|
||||||
with open(exp_result_path, "rb") as fp:
|
with open(exp_result_path, "rb") as fp:
|
||||||
analysis_df = restricted_pickle_load(fp)
|
analysis_df = pickle.load(fp)
|
||||||
|
|
||||||
# 4. Get the backtest factor which user want to optimize, if user want to maximize the factor, then reverse the result
|
# 4. Get the backtest factor which user want to optimize, if user want to maximize the factor, then reverse the result
|
||||||
res = analysis_df.loc[self.optim_config.report_type].loc[self.optim_config.report_factor]
|
res = analysis_df.loc[self.optim_config.report_type].loc[self.optim_config.report_factor]
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ from ..utils import (
|
|||||||
normalize_cache_fields,
|
normalize_cache_fields,
|
||||||
normalize_cache_instruments,
|
normalize_cache_instruments,
|
||||||
)
|
)
|
||||||
from ..utils.pickle_utils import restricted_pickle_load
|
|
||||||
|
|
||||||
from ..log import get_module_logger
|
from ..log import get_module_logger
|
||||||
from .base import Feature
|
from .base import Feature
|
||||||
@@ -226,7 +225,7 @@ class CacheUtils:
|
|||||||
cache_path = Path(cache_path)
|
cache_path = Path(cache_path)
|
||||||
meta_path = cache_path.with_suffix(".meta")
|
meta_path = cache_path.with_suffix(".meta")
|
||||||
with meta_path.open("rb") as f:
|
with meta_path.open("rb") as f:
|
||||||
d = restricted_pickle_load(f)
|
d = pickle.load(f)
|
||||||
with meta_path.open("wb") as f:
|
with meta_path.open("wb") as f:
|
||||||
try:
|
try:
|
||||||
d["meta"]["last_visit"] = str(time.time())
|
d["meta"]["last_visit"] = str(time.time())
|
||||||
@@ -593,7 +592,7 @@ class DiskExpressionCache(ExpressionCache):
|
|||||||
|
|
||||||
with CacheUtils.writer_lock(self.r, f"{str(C.dpm.get_data_uri())}:expression-{cache_uri}"):
|
with CacheUtils.writer_lock(self.r, f"{str(C.dpm.get_data_uri())}:expression-{cache_uri}"):
|
||||||
with meta_path.open("rb") as f:
|
with meta_path.open("rb") as f:
|
||||||
d = restricted_pickle_load(f)
|
d = pickle.load(f)
|
||||||
instrument = d["info"]["instrument"]
|
instrument = d["info"]["instrument"]
|
||||||
field = d["info"]["field"]
|
field = d["info"]["field"]
|
||||||
freq = d["info"]["freq"]
|
freq = d["info"]["freq"]
|
||||||
@@ -960,7 +959,7 @@ class DiskDatasetCache(DatasetCache):
|
|||||||
im = DiskDatasetCache.IndexManager(cp_cache_uri)
|
im = DiskDatasetCache.IndexManager(cp_cache_uri)
|
||||||
with CacheUtils.writer_lock(self.r, f"{str(C.dpm.get_data_uri())}:dataset-{cache_uri}"):
|
with CacheUtils.writer_lock(self.r, f"{str(C.dpm.get_data_uri())}:dataset-{cache_uri}"):
|
||||||
with meta_path.open("rb") as f:
|
with meta_path.open("rb") as f:
|
||||||
d = restricted_pickle_load(f)
|
d = pickle.load(f)
|
||||||
instruments = d["info"]["instruments"]
|
instruments = d["info"]["instruments"]
|
||||||
fields = d["info"]["fields"]
|
fields = d["info"]["fields"]
|
||||||
freq = d["info"]["freq"]
|
freq = d["info"]["freq"]
|
||||||
|
|||||||
@@ -2,15 +2,15 @@
|
|||||||
# Licensed under the MIT License.
|
# Licensed under the MIT License.
|
||||||
|
|
||||||
|
|
||||||
from __future__ import division, print_function
|
from __future__ import division
|
||||||
|
from __future__ import print_function
|
||||||
import json
|
|
||||||
|
|
||||||
import socketio
|
import socketio
|
||||||
|
|
||||||
import qlib
|
import qlib
|
||||||
|
from ..config import C
|
||||||
from ..log import get_module_logger
|
from ..log import get_module_logger
|
||||||
|
import pickle
|
||||||
|
|
||||||
|
|
||||||
class Client:
|
class Client:
|
||||||
@@ -96,7 +96,7 @@ class Client:
|
|||||||
self.logger.debug("connected")
|
self.logger.debug("connected")
|
||||||
# The pickle is for passing some parameters with special type(such as
|
# The pickle is for passing some parameters with special type(such as
|
||||||
# pd.Timestamp)
|
# pd.Timestamp)
|
||||||
request_content = {"head": head_info, "body": json.dumps(request_content, default=str)}
|
request_content = {"head": head_info, "body": pickle.dumps(request_content, protocol=C.dump_protocol_version)}
|
||||||
self.sio.on(request_type + "_response", request_callback)
|
self.sio.on(request_type + "_response", request_callback)
|
||||||
self.logger.debug("try sending")
|
self.logger.debug("try sending")
|
||||||
self.sio.emit(request_type + "_request", request_content)
|
self.sio.emit(request_type + "_request", request_content)
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
# Licensed under the MIT License.
|
# Licensed under the MIT License.
|
||||||
|
|
||||||
import abc
|
import abc
|
||||||
|
import pickle
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import warnings
|
import warnings
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
@@ -10,7 +11,6 @@ from typing import Tuple, Union, List, Dict
|
|||||||
|
|
||||||
from qlib.data import D
|
from qlib.data import D
|
||||||
from qlib.utils import load_dataset, init_instance_by_config, time_to_slc_point
|
from qlib.utils import load_dataset, init_instance_by_config, time_to_slc_point
|
||||||
from qlib.utils.pickle_utils import restricted_pickle_load
|
|
||||||
from qlib.log import get_module_logger
|
from qlib.log import get_module_logger
|
||||||
from qlib.utils.serial import Serializable
|
from qlib.utils.serial import Serializable
|
||||||
|
|
||||||
@@ -283,7 +283,7 @@ class StaticDataLoader(DataLoader, Serializable):
|
|||||||
self._data = pd.read_parquet(self._config, engine="pyarrow")
|
self._data = pd.read_parquet(self._config, engine="pyarrow")
|
||||||
else:
|
else:
|
||||||
with Path(self._config).open("rb") as f:
|
with Path(self._config).open("rb") as f:
|
||||||
self._data = restricted_pickle_load(f)
|
self._data = pickle.load(f)
|
||||||
elif isinstance(self._config, pd.DataFrame):
|
elif isinstance(self._config, pd.DataFrame):
|
||||||
self._data = self._config
|
self._data = self._config
|
||||||
|
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ class SeriesDFilter(BaseDFilter):
|
|||||||
for _ts, _bool in timestamp_series.items():
|
for _ts, _bool in timestamp_series.items():
|
||||||
# there is likely to be NAN when the filter series don't have the
|
# there is likely to be NAN when the filter series don't have the
|
||||||
# bool value, so we just change the NAN into False
|
# bool value, so we just change the NAN into False
|
||||||
if np.isnan(_bool):
|
if _bool == np.nan:
|
||||||
_bool = False
|
_bool = False
|
||||||
if _lbool is None:
|
if _lbool is None:
|
||||||
_cur_start = _ts
|
_cur_start = _ts
|
||||||
|
|||||||
@@ -2,18 +2,17 @@
|
|||||||
# Licensed under the MIT License.
|
# Licensed under the MIT License.
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import os
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import List, cast
|
from typing import cast, List
|
||||||
|
|
||||||
import cachetools
|
import cachetools
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
|
import pickle
|
||||||
|
import os
|
||||||
|
|
||||||
from qlib.backtest import Exchange, Order
|
from qlib.backtest import Exchange, Order
|
||||||
from qlib.backtest.decision import TradeRange, TradeRangeByTime
|
from qlib.backtest.decision import TradeRange, TradeRangeByTime
|
||||||
from qlib.constant import EPS_T
|
from qlib.constant import EPS_T
|
||||||
from qlib.utils.pickle_utils import restricted_pickle_load
|
|
||||||
|
|
||||||
from .base import BaseIntradayBacktestData, BaseIntradayProcessedData, ProcessedDataProvider
|
from .base import BaseIntradayBacktestData, BaseIntradayProcessedData, ProcessedDataProvider
|
||||||
|
|
||||||
|
|
||||||
@@ -163,7 +162,7 @@ class HandlerIntradayProcessedData(BaseIntradayProcessedData):
|
|||||||
path = os.path.join(data_dir, "backtest" if backtest else "feature", f"{stock_id}.pkl")
|
path = os.path.join(data_dir, "backtest" if backtest else "feature", f"{stock_id}.pkl")
|
||||||
start_time, end_time = date.replace(hour=0, minute=0, second=0), date.replace(hour=23, minute=59, second=59)
|
start_time, end_time = date.replace(hour=0, minute=0, second=0), date.replace(hour=23, minute=59, second=59)
|
||||||
with open(path, "rb") as fstream:
|
with open(path, "rb") as fstream:
|
||||||
dataset = restricted_pickle_load(fstream)
|
dataset = pickle.load(fstream)
|
||||||
data = dataset.handler.fetch(pd.IndexSlice[stock_id, start_time:end_time], level=None)
|
data = dataset.handler.fetch(pd.IndexSlice[stock_id, start_time:end_time], level=None)
|
||||||
|
|
||||||
if index_only:
|
if index_only:
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ from __future__ import annotations
|
|||||||
|
|
||||||
from typing import Any, Generic, TypeVar
|
from typing import Any, Generic, TypeVar
|
||||||
|
|
||||||
import gym
|
import gymnasium as gym
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from gym import spaces
|
from gymnasium import spaces
|
||||||
|
|
||||||
from qlib.typehint import final
|
from qlib.typehint import final
|
||||||
from .simulator import ActType, StateType
|
from .simulator import ActType, StateType
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ from typing import Any, List, Optional, cast
|
|||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from gym import spaces
|
from gymnasium import spaces
|
||||||
|
|
||||||
from qlib.constant import EPS
|
from qlib.constant import EPS
|
||||||
from qlib.rl.data.base import ProcessedDataProvider
|
from qlib.rl.data.base import ProcessedDataProvider
|
||||||
|
|||||||
@@ -6,11 +6,11 @@ from __future__ import annotations
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Any, Dict, Generator, Iterable, Optional, OrderedDict, Tuple, cast
|
from typing import Any, Dict, Generator, Iterable, Optional, OrderedDict, Tuple, cast
|
||||||
|
|
||||||
import gym
|
import gymnasium as gym
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import torch
|
import torch
|
||||||
import torch.nn as nn
|
import torch.nn as nn
|
||||||
from gym.spaces import Discrete
|
from gymnasium.spaces import Discrete
|
||||||
from tianshou.data import Batch, ReplayBuffer, to_torch
|
from tianshou.data import Batch, ReplayBuffer, to_torch
|
||||||
from tianshou.policy import BasePolicy, PPOPolicy, DQNPolicy
|
from tianshou.policy import BasePolicy, PPOPolicy, DQNPolicy
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ from __future__ import annotations
|
|||||||
import weakref
|
import weakref
|
||||||
from typing import Any, Callable, cast, Dict, Generic, Iterable, Iterator, Optional, Tuple
|
from typing import Any, Callable, cast, Dict, Generic, Iterable, Iterator, Optional, Tuple
|
||||||
|
|
||||||
import gym
|
import gymnasium as gym
|
||||||
from gym import Space
|
from gymnasium import Space
|
||||||
|
|
||||||
from qlib.rl.aux_info import AuxiliaryInfoCollector
|
from qlib.rl.aux_info import AuxiliaryInfoCollector
|
||||||
from qlib.rl.interpreter import ActionInterpreter, ObsType, PolicyActType, StateInterpreter
|
from qlib.rl.interpreter import ActionInterpreter, ObsType, PolicyActType, StateInterpreter
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import warnings
|
|||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from typing import Any, Callable, Dict, Generator, List, Optional, Set, Tuple, Type, Union, cast
|
from typing import Any, Callable, Dict, Generator, List, Optional, Set, Tuple, Type, Union, cast
|
||||||
|
|
||||||
import gym
|
import gymnasium as gym
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from tianshou.env import BaseVectorEnv, DummyVectorEnv, ShmemVectorEnv, SubprocVectorEnv
|
from tianshou.env import BaseVectorEnv, DummyVectorEnv, ShmemVectorEnv, SubprocVectorEnv
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import contextlib
|
|||||||
import importlib
|
import importlib
|
||||||
import os
|
import os
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
import pickle
|
||||||
import pkgutil
|
import pkgutil
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
@@ -19,7 +20,6 @@ from typing import Any, Dict, List, Tuple, Union
|
|||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
from qlib.typehint import InstConf
|
from qlib.typehint import InstConf
|
||||||
from qlib.utils.pickle_utils import restricted_pickle_load
|
|
||||||
|
|
||||||
|
|
||||||
def get_module_by_module_path(module_path: Union[str, ModuleType]):
|
def get_module_by_module_path(module_path: Union[str, ModuleType]):
|
||||||
@@ -168,10 +168,10 @@ def init_instance_by_config(
|
|||||||
|
|
||||||
pr_path = os.path.join(pr.netloc, path) if bool(pr.path) else pr.netloc
|
pr_path = os.path.join(pr.netloc, path) if bool(pr.path) else pr.netloc
|
||||||
with open(os.path.normpath(pr_path), "rb") as f:
|
with open(os.path.normpath(pr_path), "rb") as f:
|
||||||
return restricted_pickle_load(f)
|
return pickle.load(f)
|
||||||
else:
|
else:
|
||||||
with config.open("rb") as f:
|
with config.open("rb") as f:
|
||||||
return restricted_pickle_load(f)
|
return pickle.load(f)
|
||||||
|
|
||||||
klass, cls_kwargs = get_callable_kwargs(config, default_module=default_module)
|
klass, cls_kwargs = get_callable_kwargs(config, default_module=default_module)
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import tempfile
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from qlib.config import C
|
from qlib.config import C
|
||||||
from qlib.utils.pickle_utils import restricted_pickle_load
|
|
||||||
|
|
||||||
|
|
||||||
class ObjManager:
|
class ObjManager:
|
||||||
@@ -117,7 +116,7 @@ class FileManager(ObjManager):
|
|||||||
|
|
||||||
def load_obj(self, name):
|
def load_obj(self, name):
|
||||||
with (self.path / name).open("rb") as f:
|
with (self.path / name).open("rb") as f:
|
||||||
return restricted_pickle_load(f)
|
return pickle.load(f)
|
||||||
|
|
||||||
def exists(self, name):
|
def exists(self, name):
|
||||||
return (self.path / name).exists()
|
return (self.path / name).exists()
|
||||||
|
|||||||
@@ -1,171 +0,0 @@
|
|||||||
# Copyright (c) Microsoft Corporation.
|
|
||||||
# Licensed under the MIT License.
|
|
||||||
"""
|
|
||||||
Secure pickle utilities to prevent arbitrary code execution through deserialization.
|
|
||||||
|
|
||||||
This module provides a secure alternative to pickle.load() and pickle.loads()
|
|
||||||
that restricts deserialization to a whitelist of safe classes.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import io
|
|
||||||
import pickle
|
|
||||||
from typing import Any, BinaryIO, Set, Tuple
|
|
||||||
|
|
||||||
# Whitelist of safe classes that are allowed to be unpickled
|
|
||||||
# These are common data types used in qlib that should be safe to deserialize
|
|
||||||
SAFE_PICKLE_CLASSES: Set[Tuple[str, str]] = {
|
|
||||||
# python builtins
|
|
||||||
("builtins", "slice"),
|
|
||||||
("builtins", "range"),
|
|
||||||
("builtins", "dict"),
|
|
||||||
("builtins", "list"),
|
|
||||||
("builtins", "tuple"),
|
|
||||||
("builtins", "set"),
|
|
||||||
("builtins", "frozenset"),
|
|
||||||
("builtins", "bytearray"),
|
|
||||||
("builtins", "bytes"),
|
|
||||||
("builtins", "str"),
|
|
||||||
("builtins", "int"),
|
|
||||||
("builtins", "float"),
|
|
||||||
("builtins", "bool"),
|
|
||||||
("builtins", "complex"),
|
|
||||||
("builtins", "type"),
|
|
||||||
("builtins", "property"),
|
|
||||||
# common utility classes
|
|
||||||
("datetime", "datetime"),
|
|
||||||
("datetime", "date"),
|
|
||||||
("datetime", "time"),
|
|
||||||
("datetime", "timedelta"),
|
|
||||||
("datetime", "timezone"),
|
|
||||||
("decimal", "Decimal"),
|
|
||||||
("collections", "OrderedDict"),
|
|
||||||
("collections", "defaultdict"),
|
|
||||||
("collections", "Counter"),
|
|
||||||
("collections", "namedtuple"),
|
|
||||||
("enum", "Enum"),
|
|
||||||
("pathlib", "Path"),
|
|
||||||
("pathlib", "PosixPath"),
|
|
||||||
("pathlib", "WindowsPath"),
|
|
||||||
("qlib.data.dataset.handler", "DataHandler"),
|
|
||||||
("qlib.data.dataset.handler", "DataHandlerLP"),
|
|
||||||
("qlib.data.dataset.loader", "StaticDataLoader"),
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
TRUSTED_MODULE_PREFIXES = (
|
|
||||||
"pandas",
|
|
||||||
"numpy",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class RestrictedUnpickler(pickle.Unpickler):
|
|
||||||
"""Custom unpickler that only allows safe classes to be deserialized.
|
|
||||||
|
|
||||||
This prevents arbitrary code execution through malicious pickle files by
|
|
||||||
restricting deserialization to a whitelist of safe classes.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
>>> with open("data.pkl", "rb") as f:
|
|
||||||
... data = RestrictedUnpickler(f).load()
|
|
||||||
"""
|
|
||||||
|
|
||||||
def find_class(self, module: str, name: str):
|
|
||||||
"""Override find_class to restrict allowed classes.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
module: Module name of the class
|
|
||||||
name: Class name
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
The class object if it's in the whitelist
|
|
||||||
|
|
||||||
Raises:
|
|
||||||
pickle.UnpicklingError: If the class is not in the whitelist
|
|
||||||
"""
|
|
||||||
if module.startswith(TRUSTED_MODULE_PREFIXES):
|
|
||||||
return super().find_class(module, name)
|
|
||||||
|
|
||||||
# 2. explicit whitelist (qlib internal)
|
|
||||||
if (module, name) in SAFE_PICKLE_CLASSES:
|
|
||||||
return super().find_class(module, name)
|
|
||||||
|
|
||||||
raise pickle.UnpicklingError(
|
|
||||||
f"Forbidden class: {module}.{name}. "
|
|
||||||
f"Only whitelisted classes are allowed for security reasons. "
|
|
||||||
f"This is to prevent arbitrary code execution through pickle deserialization."
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def restricted_pickle_load(file: BinaryIO) -> Any:
|
|
||||||
"""Safely load a pickle file with restricted classes.
|
|
||||||
|
|
||||||
This is a drop-in replacement for pickle.load() that prevents
|
|
||||||
arbitrary code execution by only allowing whitelisted classes.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
file: An opened file object in binary mode
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
The unpickled Python object
|
|
||||||
|
|
||||||
Raises:
|
|
||||||
pickle.UnpicklingError: If the pickle contains forbidden classes
|
|
||||||
|
|
||||||
Example:
|
|
||||||
>>> with open("data.pkl", "rb") as f:
|
|
||||||
... data = restricted_pickle_load(f)
|
|
||||||
"""
|
|
||||||
return RestrictedUnpickler(file).load()
|
|
||||||
|
|
||||||
|
|
||||||
def restricted_pickle_loads(data: bytes) -> Any:
|
|
||||||
"""Safely load a pickle from bytes with restricted classes.
|
|
||||||
|
|
||||||
This is a drop-in replacement for pickle.loads() that prevents
|
|
||||||
arbitrary code execution by only allowing whitelisted classes.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
data: Bytes object containing pickled data
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
The unpickled Python object
|
|
||||||
|
|
||||||
Raises:
|
|
||||||
pickle.UnpicklingError: If the pickle contains forbidden classes
|
|
||||||
|
|
||||||
Example:
|
|
||||||
>>> data = b'\\x80\\x04\\x95...'
|
|
||||||
>>> obj = restricted_pickle_loads(data)
|
|
||||||
"""
|
|
||||||
file_like = io.BytesIO(data)
|
|
||||||
return RestrictedUnpickler(file_like).load()
|
|
||||||
|
|
||||||
|
|
||||||
def add_safe_class(module: str, name: str) -> None:
|
|
||||||
"""Add a class to the whitelist of safe classes for unpickling.
|
|
||||||
|
|
||||||
Use this function to extend the whitelist if your code needs to deserialize
|
|
||||||
additional classes. However, be very careful when adding classes, as this
|
|
||||||
could potentially introduce security vulnerabilities.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
module: Module name of the class (e.g., 'my_package.my_module')
|
|
||||||
name: Class name (e.g., 'MyClass')
|
|
||||||
|
|
||||||
Warning:
|
|
||||||
Only add classes that you fully control and trust. Adding arbitrary
|
|
||||||
classes from external packages could introduce security risks.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
>>> add_safe_class('my_package.models', 'CustomModel')
|
|
||||||
"""
|
|
||||||
SAFE_PICKLE_CLASSES.add((module, name))
|
|
||||||
|
|
||||||
|
|
||||||
def get_safe_classes() -> Set[Tuple[str, str]]:
|
|
||||||
"""Get a copy of the current whitelist of safe classes.
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
A set of (module, name) tuples representing allowed classes
|
|
||||||
"""
|
|
||||||
return SAFE_PICKLE_CLASSES.copy()
|
|
||||||
@@ -106,13 +106,15 @@ def handler_mod(task: dict, rolling_gen):
|
|||||||
rg (RollingGen): an instance of RollingGen
|
rg (RollingGen): an instance of RollingGen
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
handler_kwargs = task["dataset"]["kwargs"]["handler"]["kwargs"]
|
interval = rolling_gen.ta.cal_interval(
|
||||||
handler_end_time = handler_kwargs.get("end_time")
|
task["dataset"]["kwargs"]["handler"]["kwargs"]["end_time"],
|
||||||
test_seg_end_time = task["dataset"]["kwargs"]["segments"][rolling_gen.test_key][1]
|
task["dataset"]["kwargs"]["segments"][rolling_gen.test_key][1],
|
||||||
# if the end of test_segments is None (open-ended segment, i.e., "until now") or end_time < the end of test_segments,
|
)
|
||||||
# then change end_time to allow load more data
|
# if end_time < the end of test_segments, then change end_time to allow load more data
|
||||||
if test_seg_end_time is None or rolling_gen.ta.cal_interval(handler_end_time, test_seg_end_time) < 0:
|
if interval < 0:
|
||||||
handler_kwargs["end_time"] = copy.deepcopy(test_seg_end_time)
|
task["dataset"]["kwargs"]["handler"]["kwargs"]["end_time"] = copy.deepcopy(
|
||||||
|
task["dataset"]["kwargs"]["segments"][rolling_gen.test_key][1]
|
||||||
|
)
|
||||||
except KeyError:
|
except KeyError:
|
||||||
# Maybe dataset do not have handler, then do nothing.
|
# Maybe dataset do not have handler, then do nothing.
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ from tqdm.cli import tqdm
|
|||||||
|
|
||||||
from .utils import get_mongodb
|
from .utils import get_mongodb
|
||||||
from ...config import C
|
from ...config import C
|
||||||
from ...utils.pickle_utils import restricted_pickle_loads
|
|
||||||
|
|
||||||
|
|
||||||
class TaskManager:
|
class TaskManager:
|
||||||
@@ -132,7 +131,7 @@ class TaskManager:
|
|||||||
for prefix in self.ENCODE_FIELDS_PREFIX:
|
for prefix in self.ENCODE_FIELDS_PREFIX:
|
||||||
for k in list(task.keys()):
|
for k in list(task.keys()):
|
||||||
if k.startswith(prefix):
|
if k.startswith(prefix):
|
||||||
task[k] = restricted_pickle_loads(task[k])
|
task[k] = pickle.loads(task[k])
|
||||||
return task
|
return task
|
||||||
|
|
||||||
def _dict_to_str(self, flt):
|
def _dict_to_str(self, flt):
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
|
from loguru import logger
|
||||||
import os
|
import os
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
import fire
|
import fire
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from loguru import logger
|
import qlib
|
||||||
from tqdm import tqdm
|
from tqdm import tqdm
|
||||||
|
|
||||||
import qlib
|
|
||||||
from qlib.data import D
|
from qlib.data import D
|
||||||
|
|
||||||
|
|
||||||
@@ -36,7 +36,6 @@ class DataHealthChecker:
|
|||||||
self.large_step_threshold_price = large_step_threshold_price
|
self.large_step_threshold_price = large_step_threshold_price
|
||||||
self.large_step_threshold_volume = large_step_threshold_volume
|
self.large_step_threshold_volume = large_step_threshold_volume
|
||||||
self.missing_data_num = missing_data_num
|
self.missing_data_num = missing_data_num
|
||||||
self.qlib_dir = os.path.abspath(os.path.expanduser(qlib_dir))
|
|
||||||
|
|
||||||
if csv_path:
|
if csv_path:
|
||||||
assert os.path.isdir(csv_path), f"{csv_path} should be a directory."
|
assert os.path.isdir(csv_path), f"{csv_path} should be a directory."
|
||||||
@@ -69,43 +68,6 @@ class DataHealthChecker:
|
|||||||
self.data[instrument] = df
|
self.data[instrument] = df
|
||||||
print(df)
|
print(df)
|
||||||
|
|
||||||
# NOTE:
|
|
||||||
# This check is added due to a known issue in Qlib where feature paths
|
|
||||||
# are constructed using lowercased instrument names. On case-sensitive
|
|
||||||
# file systems (e.g. Linux), uppercase directory names under `features/`
|
|
||||||
# will cause data loading failures.
|
|
||||||
#
|
|
||||||
# See: https://github.com/microsoft/qlib/issues/2053
|
|
||||||
def check_features_dir_lowercase(self) -> Optional[pd.DataFrame]:
|
|
||||||
"""
|
|
||||||
Check whether all subdirectories under `<qlib_dir>/features` are named in lowercase.
|
|
||||||
|
|
||||||
This validation helps prevent data loading issues on case-sensitive
|
|
||||||
file systems caused by uppercase instrument directory names.
|
|
||||||
"""
|
|
||||||
if not self.qlib_dir:
|
|
||||||
return None
|
|
||||||
|
|
||||||
features_dir = os.path.join(self.qlib_dir, "features")
|
|
||||||
if not os.path.isdir(features_dir):
|
|
||||||
logger.warning(f"`features` directory not found under {self.qlib_dir}")
|
|
||||||
return None
|
|
||||||
|
|
||||||
bad_dirs = []
|
|
||||||
for name in os.listdir(features_dir):
|
|
||||||
full_path = os.path.join(features_dir, name)
|
|
||||||
if os.path.isdir(full_path) and name != name.lower():
|
|
||||||
bad_dirs.append(name)
|
|
||||||
|
|
||||||
if bad_dirs:
|
|
||||||
result_df = pd.DataFrame({"non_lowercase_dir": bad_dirs})
|
|
||||||
return result_df
|
|
||||||
else:
|
|
||||||
logger.info(
|
|
||||||
f"✅ All subdirectories under `{os.path.join(self.qlib_dir, 'features')}` are named in lowercase."
|
|
||||||
)
|
|
||||||
return None
|
|
||||||
|
|
||||||
def check_missing_data(self) -> Optional[pd.DataFrame]:
|
def check_missing_data(self) -> Optional[pd.DataFrame]:
|
||||||
"""Check if any data is missing in the DataFrame."""
|
"""Check if any data is missing in the DataFrame."""
|
||||||
result_dict = {
|
result_dict = {
|
||||||
@@ -215,13 +177,11 @@ class DataHealthChecker:
|
|||||||
check_large_step_changes_result = self.check_large_step_changes()
|
check_large_step_changes_result = self.check_large_step_changes()
|
||||||
check_required_columns_result = self.check_required_columns()
|
check_required_columns_result = self.check_required_columns()
|
||||||
check_missing_factor_result = self.check_missing_factor()
|
check_missing_factor_result = self.check_missing_factor()
|
||||||
check_features_dir_case_result = self.check_features_dir_lowercase()
|
|
||||||
if (
|
if (
|
||||||
check_large_step_changes_result is not None
|
check_large_step_changes_result is not None
|
||||||
or check_large_step_changes_result is not None
|
or check_large_step_changes_result is not None
|
||||||
or check_required_columns_result is not None
|
or check_required_columns_result is not None
|
||||||
or check_missing_factor_result is not None
|
or check_missing_factor_result is not None
|
||||||
or check_features_dir_case_result is not None
|
|
||||||
):
|
):
|
||||||
print(f"\nSummary of data health check ({len(self.data)} files checked):")
|
print(f"\nSummary of data health check ({len(self.data)} files checked):")
|
||||||
print("-------------------------------------------------")
|
print("-------------------------------------------------")
|
||||||
@@ -237,11 +197,6 @@ class DataHealthChecker:
|
|||||||
if isinstance(check_missing_factor_result, pd.DataFrame):
|
if isinstance(check_missing_factor_result, pd.DataFrame):
|
||||||
logger.warning(f"The factor column does not exist or is empty")
|
logger.warning(f"The factor column does not exist or is empty")
|
||||||
print(check_missing_factor_result)
|
print(check_missing_factor_result)
|
||||||
if isinstance(check_features_dir_case_result, pd.DataFrame):
|
|
||||||
logger.warning(
|
|
||||||
f"Some subdirectories under `{os.path.join(self.qlib_dir, 'features')}` contain uppercase letters, please rename them to lowercase manually."
|
|
||||||
)
|
|
||||||
print(check_features_dir_case_result)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ class InfoCollector:
|
|||||||
"pymongo",
|
"pymongo",
|
||||||
"loguru",
|
"loguru",
|
||||||
"lightgbm",
|
"lightgbm",
|
||||||
"gym",
|
"gymnasium",
|
||||||
"cvxpy",
|
"cvxpy",
|
||||||
"joblib",
|
"joblib",
|
||||||
"matplotlib",
|
"matplotlib",
|
||||||
|
|||||||
@@ -7,14 +7,12 @@ import sys
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from concurrent.futures import ThreadPoolExecutor
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
from typing import List
|
from typing import List
|
||||||
from io import StringIO
|
|
||||||
|
|
||||||
import fire
|
import fire
|
||||||
import requests
|
import requests
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from tqdm import tqdm
|
from tqdm import tqdm
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from fake_useragent import UserAgent
|
|
||||||
|
|
||||||
|
|
||||||
CUR_DIR = Path(__file__).resolve().parent
|
CUR_DIR = Path(__file__).resolve().parent
|
||||||
@@ -53,7 +51,6 @@ class WIKIIndex(IndexBase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
self._target_url = f"{WIKI_URL}/{WIKI_INDEX_NAME_MAP[self.index_name.upper()]}"
|
self._target_url = f"{WIKI_URL}/{WIKI_INDEX_NAME_MAP[self.index_name.upper()]}"
|
||||||
self._ua = UserAgent()
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
@@ -115,8 +112,7 @@ class WIKIIndex(IndexBase):
|
|||||||
return _calendar_list
|
return _calendar_list
|
||||||
|
|
||||||
def _request_new_companies(self) -> requests.Response:
|
def _request_new_companies(self) -> requests.Response:
|
||||||
headers = {"User-Agent": self._ua.random}
|
resp = requests.get(self._target_url, timeout=None)
|
||||||
resp = requests.get(self._target_url, timeout=None, headers=headers)
|
|
||||||
if resp.status_code != 200:
|
if resp.status_code != 200:
|
||||||
raise ValueError(f"request error: {self._target_url}")
|
raise ValueError(f"request error: {self._target_url}")
|
||||||
|
|
||||||
@@ -132,7 +128,7 @@ class WIKIIndex(IndexBase):
|
|||||||
def get_new_companies(self):
|
def get_new_companies(self):
|
||||||
logger.info(f"get new companies {self.index_name} ......")
|
logger.info(f"get new companies {self.index_name} ......")
|
||||||
_data = deco_retry(retry=self._request_retry, retry_sleep=self._retry_sleep)(self._request_new_companies)()
|
_data = deco_retry(retry=self._request_retry, retry_sleep=self._retry_sleep)(self._request_new_companies)()
|
||||||
df_list = pd.read_html(StringIO(_data.text))
|
df_list = pd.read_html(_data.text)
|
||||||
for _df in df_list:
|
for _df in df_list:
|
||||||
_df = self.filter_df(_df)
|
_df = self.filter_df(_df)
|
||||||
if (_df is not None) and (not _df.empty):
|
if (_df is not None) and (not _df.empty):
|
||||||
@@ -230,11 +226,7 @@ class SP500Index(WIKIIndex):
|
|||||||
def get_changes(self) -> pd.DataFrame:
|
def get_changes(self) -> pd.DataFrame:
|
||||||
logger.info(f"get sp500 history changes......")
|
logger.info(f"get sp500 history changes......")
|
||||||
# NOTE: may update the index of the table
|
# NOTE: may update the index of the table
|
||||||
# Add headers to avoid 403 Forbidden error from Wikipedia
|
changes_df = pd.read_html(self.WIKISP500_CHANGES_URL)[-1]
|
||||||
headers = {"User-Agent": self._ua.random}
|
|
||||||
response = requests.get(self.WIKISP500_CHANGES_URL, headers=headers, timeout=None)
|
|
||||||
response.raise_for_status()
|
|
||||||
changes_df = pd.read_html(StringIO(response.text))[-1]
|
|
||||||
changes_df = changes_df.iloc[:, [0, 1, 3]]
|
changes_df = changes_df.iloc[:, [0, 1, 3]]
|
||||||
changes_df.columns = [self.DATE_FIELD_NAME, self.ADD, self.REMOVE]
|
changes_df.columns = [self.DATE_FIELD_NAME, self.ADD, self.REMOVE]
|
||||||
changes_df[self.DATE_FIELD_NAME] = pd.to_datetime(changes_df[self.DATE_FIELD_NAME])
|
changes_df[self.DATE_FIELD_NAME] = pd.to_datetime(changes_df[self.DATE_FIELD_NAME])
|
||||||
|
|||||||
@@ -3,4 +3,3 @@ requests
|
|||||||
pandas
|
pandas
|
||||||
lxml
|
lxml
|
||||||
loguru
|
loguru
|
||||||
fake-useragent
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import importlib
|
|||||||
import time
|
import time
|
||||||
import bisect
|
import bisect
|
||||||
import pickle
|
import pickle
|
||||||
|
import random
|
||||||
import requests
|
import requests
|
||||||
import functools
|
import functools
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
@@ -79,14 +80,28 @@ def get_calendar_list(bench_code="CSI300") -> List[pd.Timestamp]:
|
|||||||
calendar = df.index.get_level_values(level="date").map(pd.Timestamp).unique().tolist()
|
calendar = df.index.get_level_values(level="date").map(pd.Timestamp).unique().tolist()
|
||||||
else:
|
else:
|
||||||
if bench_code.upper() == "ALL":
|
if bench_code.upper() == "ALL":
|
||||||
import akshare as ak # pylint: disable=C0415
|
|
||||||
|
|
||||||
trade_date_df = ak.tool_trade_date_hist_sina()
|
@deco_retry
|
||||||
trade_date_list = trade_date_df["trade_date"].tolist()
|
def _get_calendar(month):
|
||||||
trade_date_list = [pd.Timestamp(d) for d in trade_date_list]
|
_cal = []
|
||||||
dates = pd.DatetimeIndex(trade_date_list)
|
try:
|
||||||
filtered_dates = dates[(dates >= "2000-01-04") & (dates <= pd.Timestamp.today().normalize())]
|
resp = requests.get(
|
||||||
calendar = filtered_dates.tolist()
|
SZSE_CALENDAR_URL.format(month=month, random=random.random), timeout=None
|
||||||
|
).json()
|
||||||
|
for _r in resp["data"]:
|
||||||
|
if int(_r["jybz"]):
|
||||||
|
_cal.append(pd.Timestamp(_r["jyrq"]))
|
||||||
|
except Exception as e:
|
||||||
|
raise ValueError(f"{month}-->{e}") from e
|
||||||
|
return _cal
|
||||||
|
|
||||||
|
month_range = pd.date_range(start="2000-01", end=pd.Timestamp.now() + pd.Timedelta(days=31), freq="M")
|
||||||
|
calendar = []
|
||||||
|
for _m in month_range:
|
||||||
|
cal = _get_calendar(_m.strftime("%Y-%m"))
|
||||||
|
if cal:
|
||||||
|
calendar += cal
|
||||||
|
calendar = list(filter(lambda x: x <= pd.Timestamp.now(), calendar))
|
||||||
else:
|
else:
|
||||||
calendar = _get_calendar(CALENDAR_BENCH_URL_MAP[bench_code])
|
calendar = _get_calendar(CALENDAR_BENCH_URL_MAP[bench_code])
|
||||||
_CALENDAR_MAP[bench_code] = calendar
|
_CALENDAR_MAP[bench_code] = calendar
|
||||||
|
|||||||
@@ -613,6 +613,10 @@ class YahooNormalize1min(YahooNormalize, ABC):
|
|||||||
def symbol_to_yahoo(self, symbol):
|
def symbol_to_yahoo(self, symbol):
|
||||||
raise NotImplementedError("rewrite symbol_to_yahoo")
|
raise NotImplementedError("rewrite symbol_to_yahoo")
|
||||||
|
|
||||||
|
@abc.abstractmethod
|
||||||
|
def _get_1d_calendar_list(self) -> Iterable[pd.Timestamp]:
|
||||||
|
raise NotImplementedError("rewrite _get_1d_calendar_list")
|
||||||
|
|
||||||
|
|
||||||
class YahooNormalizeUS:
|
class YahooNormalizeUS:
|
||||||
def _get_calendar_list(self) -> Iterable[pd.Timestamp]:
|
def _get_calendar_list(self) -> Iterable[pd.Timestamp]:
|
||||||
|
|||||||
@@ -10,4 +10,3 @@ joblib
|
|||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
bs4
|
bs4
|
||||||
soupsieve
|
soupsieve
|
||||||
akshare
|
|
||||||
10
setup.py
10
setup.py
@@ -2,12 +2,22 @@ import os
|
|||||||
|
|
||||||
import numpy
|
import numpy
|
||||||
from setuptools import Extension, setup
|
from setuptools import Extension, setup
|
||||||
|
from setuptools_scm import get_version
|
||||||
|
|
||||||
|
|
||||||
|
def read(rel_path: str) -> str:
|
||||||
|
here = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
with open(os.path.join(here, rel_path), encoding="utf-8") as fp:
|
||||||
|
return fp.read()
|
||||||
|
|
||||||
|
|
||||||
NUMPY_INCLUDE = numpy.get_include()
|
NUMPY_INCLUDE = numpy.get_include()
|
||||||
|
|
||||||
|
|
||||||
|
VERSION = get_version(root=".", relative_to=__file__)
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
version=VERSION,
|
||||||
ext_modules=[
|
ext_modules=[
|
||||||
Extension(
|
Extension(
|
||||||
"qlib.data._libs.rolling",
|
"qlib.data._libs.rolling",
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import os
|
import os
|
||||||
|
import pickle
|
||||||
|
import shutil
|
||||||
import unittest
|
import unittest
|
||||||
|
from qlib.tests import TestAutoData
|
||||||
from qlib.data import D
|
from qlib.data import D
|
||||||
from qlib.data.dataset.handler import DataHandlerLP
|
from qlib.data.dataset.handler import DataHandlerLP
|
||||||
from qlib.tests import TestAutoData
|
|
||||||
from qlib.utils.pickle_utils import restricted_pickle_load
|
|
||||||
|
|
||||||
|
|
||||||
class HandlerTests(TestAutoData):
|
class HandlerTests(TestAutoData):
|
||||||
@@ -23,7 +23,7 @@ class HandlerTests(TestAutoData):
|
|||||||
dh.to_pickle(fname, dump_all=True)
|
dh.to_pickle(fname, dump_all=True)
|
||||||
|
|
||||||
with open(fname, "rb") as f:
|
with open(fname, "rb") as f:
|
||||||
dh_d = restricted_pickle_load(f)
|
dh_d = pickle.load(f)
|
||||||
|
|
||||||
self.assertTrue(dh_d._data.equals(df))
|
self.assertTrue(dh_d._data.equals(df))
|
||||||
self.assertTrue(dh_d._infer is dh_d._data)
|
self.assertTrue(dh_d._infer is dh_d._data)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
from collections import Counter
|
from collections import Counter
|
||||||
|
|
||||||
import gym
|
import gymnasium as gym
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from tianshou.data import Batch, Collector
|
from tianshou.data import Batch, Collector
|
||||||
from tianshou.policy import BasePolicy
|
from tianshou.policy import BasePolicy
|
||||||
|
|||||||
@@ -7,10 +7,10 @@ import logging
|
|||||||
import re
|
import re
|
||||||
from typing import Any, Tuple
|
from typing import Any, Tuple
|
||||||
|
|
||||||
import gym
|
import gymnasium as gym
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from gym import spaces
|
from gymnasium import spaces
|
||||||
from tianshou.data import Collector, Batch
|
from tianshou.data import Collector, Batch
|
||||||
from tianshou.policy import BasePolicy
|
from tianshou.policy import BasePolicy
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import pytest
|
|||||||
|
|
||||||
import torch
|
import torch
|
||||||
import torch.nn as nn
|
import torch.nn as nn
|
||||||
from gym import spaces
|
from gymnasium import spaces
|
||||||
from tianshou.policy import PPOPolicy
|
from tianshou.policy import PPOPolicy
|
||||||
|
|
||||||
from qlib.config import C
|
from qlib.config import C
|
||||||
|
|||||||
Reference in New Issue
Block a user