Category "binance"

Transfer USDT between spot and futures in Binance using ccxt python

exchange = ccxt.binance({ -- "apiKey": 'xxx', "secret": 'xxx', 'options': { 'adjustForTimeDifference': True }, 'enableRateLimit': True }) exchange_f = ccxt.

TradinView problem with reading webhooks and running the page script

I have the following problem: In the TradingView application, I have alarms set and sending them via the URL Webhook to the address http://mpietraszewski.cba.pl

Binance API proper way to open a futures trade?

I am currently in the midst of writing myself a little python bot for binance using their API and I find the documentation rather lackluster and wondered whethe

Time out error during Deployment in Binance Smart Chain

I got an error while deploying contract in Binance Smart Chain plz help me if anybody knows it error message looks like this Deploying 'WhitePaperInterestRat

Python Error: get_exchange_info() takes 1 positional argument but 2 were given [closed]

Getting error "TypeError: get_exchange_info() takes 1 positional argument but 2 were given" reference: https://python-binance.readthedocs.io/e

How to fetch all open positions of binance futures through Binance api

How to fetch all open positions of binance futures (not only my account data) through Binance API ?

How to get ALL (or multiple) pair's historical klines from Binance API in ONE request?

I have a trading bot that trades multiple pairs (30-40). It uses the previous 5m candle for the price input. Therefore, I get 5m history for ALL pairs one by on

Two websockets with BinanceSocketManager

I'm trying to open two web sockets - depth book and user socket. Here's my code: async def sockets(client): bm = BinanceSocketManager(client) ds = bm.de

Binance error - Too much request weight used; current limit is 1200 request weight per 1 MINUTE

exchange.load_markets() while 1: try: bars = exchange.fetch_ohlcv(ETH/USDT, timeframe='5m', limit=5)

Binanace get Order Book in C# .Net Core

i'm part of a MarketMaker team and currently need to get crypto Market Data from Binance. Here are the requirements... get public market data, so dont have api

How to use Binance API, simple GET price by ticker

I would like to get only one pair from the response. And I can't really understand how I should pass my parameter. Instructions say: Symbol price ticker GET

Can gas fees be paid from another account when transferring tokens using Web3?

bsc = 'https://bsc-dataseed.binance.org/' web3 = Web3(Web3.HTTPProvider(bsc)) # print(web3.isConnected()) account_1 = '0xXXXXXXXXXXXXXXX

How to calculate Connors RSI (CRSI)

I’m trying to calculate Connor’s RSI (CRSI). RSI and ROC give correct results, but due to streaks I get incorrect results for CRSI. Does anyone know