24 lines
588 B
Python
24 lines
588 B
Python
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
|
|
category = 'spot'
|
|
leverage = 1 # Leverage
|
|
|
|
notification = 1 # Telegram notifications
|
|
|
|
loopSleepTime = 2 # Time passing between loops/checks
|
|
|
|
paramsLines = ['highEnd',
|
|
'lowEnd',
|
|
'highBreak',
|
|
'lowBreak',
|
|
'netLevelsAmount',
|
|
'takeDelta',
|
|
'stopDelta',
|
|
'orderSize'
|
|
]
|
|
|