-
Notifications
You must be signed in to change notification settings - Fork 330
New issue
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
list index out of range #21
Comments
Use this patch |
xeonvs
pushed a commit
to xeonvs/surpriver
that referenced
this issue
Aug 13, 2021
Thank you! Very much appreciated.
… On 11 Aug 2021, at 11:35, Max V. Irgiznov ***@***.***> wrote:
Use this patch
https://pastebin.com/VeVTfJQ1 <https://pastebin.com/VeVTfJQ1>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#21 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AOLJIT7L7CU2Z4HDHXLOYF3T4I75BANCNFSM4W2WVHUA>.
Triage notifications on the go with GitHub Mobile for iOS <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android <https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email>.
|
amedeiros
added a commit
to amedeiros/surpriver
that referenced
this issue
Sep 29, 2021
fix issues tradytics#20 tradytics#21 by update params for TA
amedeiros
added a commit
to amedeiros/surpriver
that referenced
this issue
Sep 29, 2021
amedeiros
added a commit
to amedeiros/surpriver
that referenced
this issue
Sep 29, 2021
Revert "fix issues tradytics#20 tradytics#21 by update params for TA"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After running the below:
python detection_engine.py --top_n 25 --min_volume 5000 --data_granularity_minutes 60 --history_to_use 14 --is_load_from_dictionary 0 --data_dictionary_path 'dictionaries/data_dict.npy' --is_save_dictionary 1 --is_test 0 --future_bars 0
Here is the error message:
Traceback (most recent call last):
File "detection_engine.py", line 357, in
supriver.find_anomalies()
File "detection_engine.py", line 196, in find_anomalies
features, historical_price_info, future_prices, symbol_names = self.dataEngine.collect_data_for_all_tickers()
File "/Users/Home/Documents/Coding/surpriver-master/data_loader.py", line 211, in collect_data_for_all_tickers
features, historical_price_info, future_price_info, symbol_names = self.remove_bad_data(features, historical_price_info, future_price_info, symbol_names)
File "/Users/Home/Documents/Coding/surpriver-master/data_loader.py", line 249, in remove_bad_data
most_common_length = length_dictionary[0]
IndexError: list index out of range
The text was updated successfully, but these errors were encountered: