-
Notifications
You must be signed in to change notification settings - Fork 179
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
probleme with Arbitrage.ipynb #9
Comments
I'm getting the same issue, let me know if you've been able to resolve it. |
Getting the same issue. Didn't find a answer yet. |
How come no one has bothered to answer this issue? It's something i'm experiencing too, and i'm baffled as to why. |
It just means theres no arbitrage opportunities the list is empty you can fix it by if arbitrage_events: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello I have a problem at this step :
Creating Dataframe and Writing to Excel File
Error : ValueError Traceback (most recent call last)
in
----> 1 MAX_OUTCOMES = max([event.num_outcomes for event in arbitrage_events])
2 ARBITRAGE_EVENTS_COUNT = len(arbitrage_events)
3
4 my_columns = ['ID', 'Sport Key', 'Expected Earnings'] + list(np.array([[f'Bookmaker #{outcome}', f'Name #{outcome}', f'Odds #{outcome}', f'Amount to Buy #{outcome}'] for outcome in range(1, MAX_OUTCOMES + 1)]).flatten())
5 dataframe = pd.DataFrame(columns=my_columns)
ValueError: max() arg is an empty sequence
What I should do ?
The text was updated successfully, but these errors were encountered: