commit b11914f7a589f43842c42875aa1aa275c7c3ce9f Author: Beesquit Date: Sat Apr 12 13:58:02 2025 +0300 Initial commit (config files) diff --git a/credentials.py b/credentials.py new file mode 100644 index 0000000..6d30858 --- /dev/null +++ b/credentials.py @@ -0,0 +1,9 @@ +# Bybit + +api_key = "..." +api_secret = "..." + + +# Telegram + +bot_token = "..." diff --git a/options.py b/options.py new file mode 100644 index 0000000..31394f6 --- /dev/null +++ b/options.py @@ -0,0 +1,11 @@ +url = 'https://testnet.binance.vision/api' # API url +testnet = True # Use testnet or not + +pairSymbol = 'ETHUSDT' # Trading pair +mainSymbol = 'USDT' # Balance asset +timeScape = '15m' # Candle length +leverage = 1 # Leverage + +notification = 1 # Telegram notifications + +loopSleepTime = 2 # Time passing between loops/checks