-
i use binance kline data to build the crsi list, but can't work on it. don't know howto use the CRSI function.
```
# Get Binance Data into dataframe
candles = client.get_klines(symbol='BT…
-
Traceback (most recent call last):
File "/Users/mac/Documents/WORK/python/stock/stock.py", line 37, in
klines = api.get_kline_serial(wname, 4*60*60)
File "/Library/Frameworks/Python.framew…
-
改了一下
# 1.指数每日涨跌幅
def parse(self, response):
response = re.findall(r'\((.*?)\);$', response.text)[0]
response = json.loads(response)
for i in response.get("data").get…
-
I just followed the example in the documentation for streaming klines, and specified a 1m interval. Despite that, the stream gives an output every 2 s which is in line with the frequency rate stated i…
-
in klines, quotevolumeactive represents what?
tks!
-
Hello!
I am hacking the examples.. While learning about Python. I am looking to get klines from the btcusd **Swap** market.
This is what I came up:
binance_websocket_api_manager.create_stream(["kli…
-
Currently the bot throttles its requests based on a value set in conf.
This *appears to be to avoid API limits being hit, it impacts our response times and slows the entire bot as the loop is proces…
-
With the sample config.json in examples\huobi_future,
"ACCOUNTS": [
{
"platform": "huobi_swap",
"account": "account",
"host": "https://api.hbdm.v…
igkoh updated
4 years ago
-
This is how we get current prices
```
https://api.binance.com/api/v1/ticker/allPrices
```
Can we get the historical prices?
```
https://api.binance.com/api/v1/ticker/allPrices?date=20170303
…
-
From what I can tell, this crate does not support the Binance's [Futures API](https://binance-docs.github.io/apidocs/futures/en/).
Are there any branches/alternate crates that support the API?
A…