51bitquant / binance_grid_trader

Binance_grid_trader is a grid strategy bot trading with Binance Spot and Binance Futures Exchange. you can use it to trade any pair in Binance Exchange. Binance_grid_trader是一个币安网格策略软件, 目前支持币安现货,USDT合约和币币合约。
MIT License
738 stars 261 forks source link

Nice work #20

Open MBillar opened 2 years ago

MBillar commented 2 years ago

But COINM not connecting.. is it work?

2022-05-29 03:01:26,242 INFO: dotusd_perpetual: Could Not Find The Symbol:dotusd_perpetual.BINANCE, Please Connect the Api First.

im tried to connect a lot of times

MBillar commented 2 years ago

the best what u can do: if new orders on red position will put on size of last minute candle on the end of the candle (for squeezes)

51bitquant commented 2 years ago

But COINM not connecting.. is it work?

2022-05-29 03:01:26,242 INFO: dotusd_perpetual: Could Not Find The Symbol:dotusd_perpetual.BINANCE, Please Connect the Api First.

im tried to connect a lot of times

you need you connect the api first. And the future api has usdt-base and coin-base.

MBillar commented 2 years ago

Im do it. Im chose coin-m, its connecting, on init i see this error

MBillar commented 2 years ago

and one more thing: can u do grid for long trend, or short trend?

51bitquant commented 2 years ago

ok,I will add it in the next version. but currently you can place specific volume of long or short order from app or website before starting this bot.

51bitquant commented 2 years ago

But COINM not connecting.. is it work? 2022-05-29 03:01:26,242 INFO: dotusd_perpetual: Could Not Find The Symbol:dotusd_perpetual.BINANCE, Please Connect the Api First. im tried to connect a lot of times

you need you connect the api first. And the future api has usdt-base and coin-base.

the symbol is not correct, the symbo would be DOTUSD.BINANCE rather than dotusd_perpetual.BINANCE

MBillar commented 2 years ago

What u think about adding Divergence signals to bot for minute trading? https://ru.tradingview.com/script/n8AGnIZd-Divergence-for-Many-Indicators-v4/ this tool works perfect. it can be better than just grid

MBillar commented 2 years ago

And on spot i cant use. PAXGUSDT: Subscribe Market Data Failed,Symbol Not Found PAXG_USDT.BINANCE PAXG: Subscribe Market Data Failed,Symbol Not Found PAXG.BINANCE

MBillar commented 2 years ago

At the moment works only USDT futures. All another have same errors

MBillar commented 2 years ago

Fix it please) its bug on spot and coinm. give u 10$ if u do it tonight!

51bitquant commented 2 years ago

And on spot i cant use. PAXGUSDT: Subscribe Market Data Failed,Symbol Not Found PAXG_USDT.BINANCE PAXG: Subscribe Market Data Failed,Symbol Not Found PAXG.BINANCE

use the lowercase for spot market, the symbol would be paxgusdt. for future market, use the upper case, it would be BTCUSDT for btcusdt perpetual future.

MBillar commented 2 years ago

And on spot i cant use. PAXGUSDT: Subscribe Market Data Failed,Symbol Not Found PAXG_USDT.BINANCE PAXG: Subscribe Market Data Failed,Symbol Not Found PAXG.BINANCE

use the lowercase for spot market, the symbol would be paxgusdt. for future market, use the upper case, it would be BTCUSDT for btcusdt perpetual future.

Lol. Its not work. I tell u: im try all possible options.

51bitquant commented 2 years ago

ok, I will try to record a tutorial video today on how to setup and use this bot. wait for it.

51bitquant commented 2 years ago

here is the tutorials for how to setup and run the binance_grid_trader bot: https://www.youtube.com/watch?v=Z_BPaRnhNzM

MBillar commented 2 years ago

here is the tutorials for how to setup and run the binance_grid_trader bot: https://www.youtube.com/watch?v=Z_BPaRnhNzM

for COINM stll not work any option: im try DOGEUSD, dogeusd, dogeusd_perpetual, DOGEUSD_PERPETUAL

DOGEUSD: Subscribe Market Data Failed,Symbol Not Found DOGEUSD.BINANCE DOGE: Subscribe Market Data Failed,Symbol Not Found DOGE.BINANCE DOGEUSD: Subscribe Market Data Failed,Symbol Not Found dogeusd.BINANCE

51bitquant commented 2 years ago

When connecting to the exchange, did you choose the future type to "COIN" already? the future type "USD" for the usdt/busd futures, if you want to use the coinM , you need to choose the coin future type.

MBillar commented 2 years ago

When connecting to the exchange, did you choose the future type to "COIN" already? the future type "USD" for the usdt/busd futures, if you want to use the coinM , you need to choose the coin future type. Screenshot

51bitquant commented 1 year ago

For the coin future or inverse future, the symbol is like this: DOGEUSD_PERP.BINANCE, or for eth, ETHUSD_PERP.BINANCE, ETHUSD_220930.BINANCE, ETHUSD_221230.BINANCE, for detail, pls see the gateway query_contract method.

MBillar commented 1 year ago

fix for widget problem with regions where numbers goes with comma

       elif type_ is float:
            validator = QtGui.QDoubleValidator()
            locale = QtCore.QLocale("us")
            validator.setLocale(locale)
            edit.setValidator(validator)