1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-06-06 05:51:17 +08:00

fix(rl): 🐛 dataFrame selection problem in high-freq execution workflow (#1348)

This commit is contained in:
Yuchen Fang
2022-11-11 11:32:22 +08:00
committed by GitHub
parent 2b8462d137
commit 56edc16089

View File

@@ -34,10 +34,10 @@ class HighfreqWorkflow(object):
MARKET = "all"
BENCHMARK = "SH000300"
start_time = "2020-09-15 00:00:00"
end_time = "2021-01-18 16:00:00"
train_end_time = "2020-11-30 16:00:00"
test_start_time = "2020-12-01 00:00:00"
start_time = pd.Timestamp("2020-09-15 00:00:00")
end_time = pd.Timestamp("2021-01-18 16:00:00")
train_end_time = pd.Timestamp("2020-11-30 16:00:00")
test_start_time = pd.Timestamp("2020-12-01 00:00:00")
DATA_HANDLER_CONFIG0 = {
"start_time": start_time,