├── APIkeys_fetching.py ├── BasicFonctionalities.py ├── Core.py ├── GUI ├── BTC_LiveGraph.py ├── BuysellWindow.py ├── Dashboard.py ├── Graphs.py ├── Progressbar.py ├── TutorialGUI.py ├── accountEditor.py ├── balanceaccount.py ├── errorMessage.py ├── images │ ├── error.png │ ├── loupe.png │ └── validation.png ├── interfacefinalGUI.py ├── newsGUI.py ├── ordersGUI.py ├── validationMessage.py └── watchlistGUI.py ├── README.md ├── Trailing stop and start Console mode.py ├── accountEditor.py ├── balances.py ├── fetchAddresses.py ├── graphics.py ├── newsAPI.py ├── orders.py └── requirements.txt /APIkeys_fetching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/APIkeys_fetching.py -------------------------------------------------------------------------------- /BasicFonctionalities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/BasicFonctionalities.py -------------------------------------------------------------------------------- /Core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/Core.py -------------------------------------------------------------------------------- /GUI/BTC_LiveGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/BTC_LiveGraph.py -------------------------------------------------------------------------------- /GUI/BuysellWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/BuysellWindow.py -------------------------------------------------------------------------------- /GUI/Dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/Dashboard.py -------------------------------------------------------------------------------- /GUI/Graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/Graphs.py -------------------------------------------------------------------------------- /GUI/Progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/Progressbar.py -------------------------------------------------------------------------------- /GUI/TutorialGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/TutorialGUI.py -------------------------------------------------------------------------------- /GUI/accountEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/accountEditor.py -------------------------------------------------------------------------------- /GUI/balanceaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/balanceaccount.py -------------------------------------------------------------------------------- /GUI/errorMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/errorMessage.py -------------------------------------------------------------------------------- /GUI/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/images/error.png -------------------------------------------------------------------------------- /GUI/images/loupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/images/loupe.png -------------------------------------------------------------------------------- /GUI/images/validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/images/validation.png -------------------------------------------------------------------------------- /GUI/interfacefinalGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/interfacefinalGUI.py -------------------------------------------------------------------------------- /GUI/newsGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/newsGUI.py -------------------------------------------------------------------------------- /GUI/ordersGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/ordersGUI.py -------------------------------------------------------------------------------- /GUI/validationMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/validationMessage.py -------------------------------------------------------------------------------- /GUI/watchlistGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/GUI/watchlistGUI.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/README.md -------------------------------------------------------------------------------- /Trailing stop and start Console mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/Trailing stop and start Console mode.py -------------------------------------------------------------------------------- /accountEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/accountEditor.py -------------------------------------------------------------------------------- /balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/balances.py -------------------------------------------------------------------------------- /fetchAddresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/fetchAddresses.py -------------------------------------------------------------------------------- /graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/graphics.py -------------------------------------------------------------------------------- /newsAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/newsAPI.py -------------------------------------------------------------------------------- /orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/orders.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L0GYKAL/Python-crypto-Bot/HEAD/requirements.txt --------------------------------------------------------------------------------