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
为了兼容不同终端的用户,建议尽量不要用绝对地址,用相对地址,而且存储的地址尽量在项目内,而不去污染非项目环境。 例如: tactic.replay(bars, res_path=r"C:\ts_data_czsc\trade_replay_test_c")
tactic.replay(bars, res_path=r"C:\ts_data_czsc\trade_replay_test_c")
html_path = os.path.join(home_path, signal.key) os.makedirs(html_path, exist_ok=True)
The text was updated successfully, but these errors were encountered:
@NoraGithub 没有理解你这里的意思,res_path 之类的都是入参。用相对地址还是绝对地址是用户自己决定的
Sorry, something went wrong.
No branches or pull requests
为了兼容不同终端的用户,建议尽量不要用绝对地址,用相对地址,而且存储的地址尽量在项目内,而不去污染非项目环境。
例如:
tactic.replay(bars, res_path=r"C:\ts_data_czsc\trade_replay_test_c")
html_path = os.path.join(home_path, signal.key) os.makedirs(html_path, exist_ok=True)
The text was updated successfully, but these errors were encountered: