9acb3460a1
Align entry labels with max future edge, tune direction labeling, and harden regression evaluation. Add training diagnostics, price-plan search, feature screening, and nonlinear benchmark scripts.
21 lines
504 B
Python
21 lines
504 B
Python
from __future__ import annotations
|
|
|
|
import argparse
|
|
|
|
import _bootstrap # noqa: F401
|
|
from trader_training.entry_feature_screen import screen_entry_features
|
|
from trader_training.io_utils import add_common_args, setup_logging
|
|
|
|
|
|
def main() -> None:
|
|
parser = argparse.ArgumentParser()
|
|
add_common_args(parser)
|
|
parser.add_argument("--min-bucket-rows", type=int, default=300)
|
|
args = parser.parse_args()
|
|
setup_logging()
|
|
screen_entry_features(args)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|