CryptoStoreAI is aimed to analyze and react to data variation movements in the stock market and crypto market
Use the package manager pip to install requirements.
pip install -r requirements.txt
Create a .env
file and fill out the file with your Binance personal key fallowing .env.exemple
formate
def run():
#run
run = Controller()
#add user
run.addUser("me",api_key=os.getenv("APIKEY"),api_secret=os.getenv("APISEC"))
#add Cryptocurrency to your list
run.addcoin("BTCUSDT")
#connecte user to Cryptocurrency of the list (Activate trading on this Cryptocurrency)
run.addcoinUser("me","BTCUSDT")
#get balance of all activated Cryptocurrency
run.getbalance("me")
# update data
run.data("BTCUSDT")
if __name__ == '__main__':
run()
Backend : graql server https://github.com/chenak-a/servergoQbites
frontend : react https://github.com/chenak-a/QbitesReact