mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-07 13:00:58 +08:00
* support optimization based strategy * fix riskdata not found & update doc * refactor signal_strategy * add portfolio example * Update examples/portfolio/prepare_riskdata.py Co-authored-by: you-n-g <you-n-g@users.noreply.github.com> * fix typo Co-authored-by: you-n-g <you-n-g@users.noreply.github.com> * fix typo Co-authored-by: you-n-g <you-n-g@users.noreply.github.com> * update doc * fix riskmodel doc Co-authored-by: you-n-g <you-n-g@users.noreply.github.com> Co-authored-by: you-n-g <you-n-g@users.noreply.github.com>
18 lines
322 B
Python
18 lines
322 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
|
|
|
|
from .signal_strategy import (
|
|
TopkDropoutStrategy,
|
|
WeightStrategyBase,
|
|
EnhancedIndexingStrategy,
|
|
)
|
|
|
|
from .rule_strategy import (
|
|
TWAPStrategy,
|
|
SBBStrategyBase,
|
|
SBBStrategyEMA,
|
|
)
|
|
|
|
from .cost_control import SoftTopkStrategy
|