Skip to content
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

Guide need #3

Open
Manish-k723 opened this issue Oct 12, 2024 · 1 comment
Open

Guide need #3

Manish-k723 opened this issue Oct 12, 2024 · 1 comment

Comments

@Manish-k723
Copy link

I was exploring openbb but found it difficult to understand openbb-forecast part. Googled for it even asked to chatGpt but didn't found much useful things for getting started with openbb-forecast. Can anyone pls help me with something useful in this regard.

@HemuManju
Copy link
Contributor

HemuManju commented Nov 24, 2024

Hello @Manish-k723, here is a minimal example of forecasting using autoarima. Please follow the README.md for installation instructions. After installation you run autoarima forecasting model as show below. The output.results.forecast contains a list of forecasted values.

from openbb import obb

data = obb.equity.price.historical(symbol="AAPL")

output = obb.forecast.statistical.autoarima(data=data.results)
print(output.results.forecast)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants