Skip to content

A python module to fetch live data from Binance API, to predict trend and components of various crypto currencies.

Notifications You must be signed in to change notification settings

soumyadeepghoshGG/Crypto-Predictor-using-price-from-Binance-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Future Plan

  1. PROPHET BOOST
  2. Ensemble Time series model (stacking)
  3. GlutonTS with Reticulate
  4. Neural Prophet or look into LSTM

To keep your API keys secure by using environment variables, follow these steps:

Store API Keys in Environment Variables:

  • Linux/MacOS:

    • Open your terminal and run the following commands to set the environment variables temporarily:
    export BINANCE_API_KEY='your_api_key_here'
    export BINANCE_API_SECRET='your_api_secret_here'
    • For permanent storage, add these lines to your ~/.bashrc, ~/.bash_profile, or ~/.zshrc file:
    export BINANCE_API_KEY='your_api_key_here'
    export BINANCE_API_SECRET='your_api_secret_here'
  • Windows:

    • Open Command Prompt and run:
    setx BINANCE_API_KEY "your_api_key_here"
    setx BINANCE_API_SECRET "your_api_secret_here"
    • For temporary usage, you can use:
    set BINANCE_API_KEY="your_api_key_here"
    set BINANCE_API_SECRET="your_api_secret_here"

About

A python module to fetch live data from Binance API, to predict trend and components of various crypto currencies.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages