Skip to content

This project combines machine learning with blockchain to predict cryptocurrency prices based on historical data. Blockchain ensures the transparency and immutability of data used for AI training, while AI models provide price predictions.

Notifications You must be signed in to change notification settings

abhishekverma276/crypto-price-prediction

Repository files navigation

activate virtual environment: venv\Scripts\activate

Request for Bitcoin (/predict/btc): powershell $uri = "http://127.0.0.1:5000/predict/btc" $headers = @{ "Content-Type" = "application/json" } $body = @' [ { "lag_1": 27408.34, "lag_2": 27350.56, "lag_3": 27455.23, "lag_4": 27500.34, "lag_5": 27300.67 } ] '@

$response = Invoke-WebRequest -Uri $uri -Headers $headers -Method POST -Body $body $response.Content Request for Ethereum (/predict/eth): powershell $uri = "http://127.0.0.1:5000/predict/eth" $headers = @{ "Content-Type" = "application/json" } $body = @' [ { "lag_1": 1855.97, "lag_2": 1849.56, "lag_3": 1860.23, "lag_4": 1850.34, "lag_5": 1830.67 } ] '@

$response = Invoke-WebRequest -Uri $uri -Headers $headers -Method POST -Body $body $response.Content

About

This project combines machine learning with blockchain to predict cryptocurrency prices based on historical data. Blockchain ensures the transparency and immutability of data used for AI training, while AI models provide price predictions.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published