We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/andyyue2024/sq https://github.com/andyyue2024/qm
def init(context): model1 = GMModel() # model1.add(AllSymbolSelector(list(index_list.keys()))) # model1.add(BlackFilter()) model1.add(WhiteFilter([context.symbol])) # model1.add(TopNFilter(context.num)) model1.add(ManualOrder(context, model1)) model1.add_trainer(ManualTrainer(context.symbol, model_index=1)) model1.train() # backtest result of model_index = 0~7: see sq_test3_1_backtest.md return model1 def algo(context): print_log(context.now, " algo...") context.model.execute(context.now) ### ref “P.S. if you want to add your favorite data source, please put an issue in this repo!”
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Link
https://github.com/andyyue2024/sq
https://github.com/andyyue2024/qm
Easy using
The text was updated successfully, but these errors were encountered: