1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-02 02:21:18 +08:00

Update strategy.py

This commit is contained in:
ZhangTP1996
2021-08-05 11:59:34 +08:00
committed by you-n-g
parent e71e2f941c
commit 398131cff7

View File

@@ -221,9 +221,9 @@ class TopkDropoutStrategy(BaseStrategy, ListAdjustTimer):
only_tradable : bool
will the strategy only consider the tradable stock when buying and selling.
if only_tradable:
strategy will make buy sell decision without checking the tradable state of the stock.
the strategy will peek at the information in the short future to avoid untradable stocks (untradable stocks include stocks that meet suspension, or hit limit up or limit down).
else:
strategy will make decision with the tradable state of the stock info and avoid buy and sell them.
the strategy will generate orders without peeking any information in the future, so the order generated by the strategies may fail.
"""
super(TopkDropoutStrategy, self).__init__()
ListAdjustTimer.__init__(self, kwargs.get("adjust_dates", None))