You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the algo buys if any return will be positive in the future.
Implement checking now is the best time to buy:
i.e., no future time is more profitable to buy given the current prediction
Pseudocode:
Iterate over the predictions
Apply should_buy at each step
Compare the max_returns
Choose the highest
Output the best predicted time of buy
The text was updated successfully, but these errors were encountered:
Currently, the algo buys if any return will be positive in the future.
Implement checking now is the best time to buy:
i.e., no future time is more profitable to buy given the current prediction
Pseudocode:
Iterate over the predictions
Apply should_buy at each step
Compare the max_returns
Choose the highest
Output the best predicted time of buy
The text was updated successfully, but these errors were encountered: