├── .idea ├── .gitignore ├── Bybit-Futures-Bot.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── BybitUSDT ├── BybitAuthenticator.py ├── bybitwrapper.py ├── profit.py └── websocket.py ├── LICENSE ├── README.md ├── coins.json ├── ordersize.json ├── requirements.txt └── settings.json /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Bybit-Futures-Bot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/.idea/Bybit-Futures-Bot.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BybitUSDT/BybitAuthenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/BybitUSDT/BybitAuthenticator.py -------------------------------------------------------------------------------- /BybitUSDT/bybitwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/BybitUSDT/bybitwrapper.py -------------------------------------------------------------------------------- /BybitUSDT/profit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/BybitUSDT/profit.py -------------------------------------------------------------------------------- /BybitUSDT/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/BybitUSDT/websocket.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/README.md -------------------------------------------------------------------------------- /coins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/coins.json -------------------------------------------------------------------------------- /ordersize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/ordersize.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Bybit-Futures-Bot/HEAD/settings.json --------------------------------------------------------------------------------