From b11914f7a589f43842c42875aa1aa275c7c3ce9f Mon Sep 17 00:00:00 2001 From: Beesquit Date: Sat, 12 Apr 2025 13:58:02 +0300 Subject: [PATCH] Initial commit (config files) --- credentials.py | 9 +++++++++ options.py | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100644 credentials.py create mode 100644 options.py 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