Skip to content

0s3v3n0/StockPredictionMachineLearning

Repository files navigation

Plain Stock Prediction

Authour

Plain Stock Price Prediction via RNNs with Graves LSTM unit.

Training and Predicting a specific feature by setting PriceCategory in com.isaac.stock.predict.StockPricePrediction.java as:

PriceCategory category = PriceCategory.CLOSE; // CLOSE: train and predict close price
// or
PriceCategory category = PriceCategory.OPEN; // OPEN: train and predict open price
// ...

The PriceCategory enum:

public enum PriceCategory {
    OPEN, CLOSE, LOW, HIGH, VOLUME, ALL
}

Predicting all features as:

PriceCategory category = PriceCategory.ALL; // ALL: train and predict all features

A Useful GitHub Repository: timestocome/Test-stock-prediction-algorithms, which contains much information, methods and sources about predict stock and market movements.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages