mirror of
https://github.com/microsoft/qlib.git
synced 2026-06-06 05:51:17 +08:00
* wip * wip * wip * Fix naming errors * Backtest test passed * Why training stuck? * Minor * Refine train configs * Use dummy in training * Remove pickle_dataframe * CI * CI * Add more strict condition to filter orders * Pass test * Add TODO in example --------- Co-authored-by: Young <afe.young@gmail.com>
21 lines
467 B
YAML
Executable File
21 lines
467 B
YAML
Executable File
order_file: ./data/orders/test_orders.pkl
|
|
start_time: "9:30"
|
|
end_time: "14:54"
|
|
qlib:
|
|
provider_uri_5min: ./data/bin/
|
|
exchange:
|
|
limit_threshold: null
|
|
deal_price: ["$close", "$close"]
|
|
volume_threshold: null
|
|
strategies:
|
|
1day:
|
|
class: TWAPStrategy
|
|
kwargs: {}
|
|
module_path: qlib.contrib.strategy.rule_strategy
|
|
30min:
|
|
class: TWAPStrategy
|
|
kwargs: {}
|
|
module_path: qlib.contrib.strategy.rule_strategy
|
|
concurrency: 16
|
|
output_dir: outputs/twap/
|