Stock-Prediction-Models icon indicating copy to clipboard operation
Stock-Prediction-Models copied to clipboard

Gathers machine learning and deep learning models for Stock forecasting including trading bots and simulations

Results 53 Stock-Prediction-Models issues
Sort by recently updated
recently updated
newest added

Please, any suggestion to save trained agents like for example: 19.recurrent-curiosity-q-learning-agent? Thanks a lot!!

I have ~50 features in my own personal dataset im testing. Im not seeing anything in the code besides "close" on the evolution strategy agent. Is there a way i...

Anybody come across these kinds of results? ![image](https://user-images.githubusercontent.com/40477419/147378389-f9e11c84-9137-4b90-a8be-4538aab1bedc.png) This run starts with a 10,000 balance, which is default. The total rewards is positive, suggesting it's profiting, but the total money...

first of all, thanks for your codes. Your forecast file has lstm applied, but I want to change it to a different model and test it. Thanks for letting me...

`def get_state(parameters, t, window_size = 20): outside = [] d = t - window_size + 1 for parameter in parameters: block = ( parameter[d : t + 1] if d...

are there some papers about evolution strategy agent to help beginners get started and understand the code? Thanks a lot

Hi, thank you first for sharing all this code with us, it has been such a big help in my thesis. I have only one question. I have been reading...

Hello, Just a newcomer to the ML world and have been trying some simple algorithms. I wanted to step further and reached your great examples under the `deep_learning` section. After...