python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Google Sheets Import XML Function error: Imported Xml content can not be parsed
I am trying to scrape data from crypto-exchanges. When i use the Import XML function in google sheets is gives the "Imported Xml content can not be parsed." error. The function I am using is...
TommyH
Votes: 0
Answers: 2
How Can I Convert 2 list of data in html table
I was Trying To Get All Of My Future Open Position at Binance in Python This is my code-
from binance.client import Client
client = Client("api key", "secret key")
import pandas as...
Rhythm Agarwal
Votes: 0
Answers: 2
Transfer USDT between spot and futures in Binance with ccxt python
import time
start = time.time()
exchange.sapi_post_futures_transfer({
'asset': 'USDT',
'amount': '10',
'type': 2,
})
end = time.time()
I want to take a long position in the spot market an...
euphrates85
Votes: 0
Answers: 0
Retrieve all Trade History from Binance API
I am trying to retrieve all Trade History data from Binance using the API. I understand that Binance only allows you to get the data by specifying the ticker, which is unfortunate, but assuming I have...
Ricardo Castillo
Votes: 0
Answers: 1