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
Hi,
I had an error when backtesting with the provided strategy. The error which raised when bb_width was 0.
This line of code in the strategy then caused 'V' to be populated with the value '-inf'. Which caused errors when training the model.
I replace this line of code:
dataframe['V'] = 1 / bb_width
With this:
dataframe['V'] = np.where(bb_width == 0, np.nan, 1 / bb_width)
(populated 'V' with nan when bb_width = 0)
I don't know if this is a proper solution?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I had an error when backtesting with the provided strategy. The error which raised when bb_width was 0.
This line of code in the strategy then caused 'V' to be populated with the value '-inf'. Which caused errors when training the model.
I replace this line of code:
dataframe['V'] = 1 / bb_width
With this:
dataframe['V'] = np.where(bb_width == 0, np.nan, 1 / bb_width)
(populated 'V' with nan when bb_width = 0)
I don't know if this is a proper solution?
The text was updated successfully, but these errors were encountered: