问题标签 [binance]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1786 浏览

api - Binance cryptoexchange API "/account" 401 响应

我在使用 Google Sheet 中的脚本调用 Binance cryptoexchange API 时遇到问题。

我已经使用示例https://www.binance.com/restapipub.html#user-content-signed-endpoint-security中的数据检查了我的签名处理, 并且我得到了相同的签名。

我已经用另一个集线器(coinigy.com)检查了我的 API 密钥和秘密,密钥工作正常。

但是我自己执行脚本时仍然出现 401 错误...

币安支持没有回答。

有人可以帮忙吗?

0 投票
2 回答
5129 浏览

python-3.x - 如何使用带有 asyncio 的高速公路连接到 binance websocket 服务

我正在尝试通过以下方式连接到币安服务:

我知道它可以工作,因为已经尝试过使用在线 Web 服务检查器,它注册监听服务器并毫无问题地接收 100 万支蜡烛。

正如我所看到的,当我将路径添加到主机时,问题就来了。如果我不添加路径“/ws/bnbbtc@kline_1m”,它会连接但会立即出现错误:

这是我正在使用的代码,主要从示例中提取:

使用它,我从 getaddrinfo 收到以下错误:

我真的很坚持这一点,如果有人可以提供帮助,我将不胜感激。

0 投票
2 回答
7510 浏览

api - How do Binance API calculate priceChangePercent in 24h

I am developing my own app in which I want to retrieve price data in a 24h period. I have read the docs provided by Binance at https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md

Then I try fetching 24hr ticker price change statistics by using the link https://api.binance.com/api/v1/ticker/24hr?symbol=BTCUSDT. The response is:

But when I try loading Kline/Candlestick data by using this link: https://api.binance.com/api/v1/klines?symbol=BNBBTC&interval=15m&startTime=1526170656448&endTime=1526257056448 (which has startTime and endTime set to be exactly the same as openTime and closeTime in the response above). And the result is:

As far as price change percentage is concerned, I have try calculating using the close price of the last interval and the open price of the first interval (0.00150590 / 0.00154030 - 1 = -2.2%), but the result -2.2% is completely different from "priceChangePercent": "1.314" in the 24hr ticker price change statistics.

My question, how do Binance API calculate price change percentage in a 24h period pertaining to Kline/Candlestick data? Thank you do much for your time.

0 投票
1 回答
737 浏览

ios - 交易后订单币安签名错误

我正在尝试使用来自 ios 的 binance api 进行交易。

总是给出错误["code": -1022, "msg": 此请求的签名无效。]

代码:

编辑:在使用帐户 api 时,我没有遇到任何签名问题。它按预期给出响应

0 投票
1 回答
1492 浏览

r - 如何:通过 RStudio 新订单 Binance API

我正在尝试使用 RStudio 通过 Binance API 创建新订单。

我找到了 Binance Official API Docs 并发现我应该使用

以下脚本对我不起作用:

有谁知道我做错了什么以及如何使用 RSTUDIO 通过 Binance API 创建订单以及如何创建我的签名?

0 投票
1 回答
4226 浏览

binance - binance中历史klines websocket中的列标题名称是什么?

我正在使用“get_historical_klines”(http://python-binance.readthedocs.io/en/latest/binance.html#binance.client.Client.get_historical_klines)从币安检索历史数据

我返回了文档是 OHLCV,但似乎并非如此,我从 websocket 获得 10 个数字列标题,但在文档中找不到 10 个列标题是什么?

分类为数据框的 websocket 示例。

0 投票
1 回答
3002 浏览

email - 从 tradingview 调用 rest api

我需要做的是将 Tradingview 警报系统与 Crypto Exchange 的 api 联系起来。我知道 Tradingview 提供可以通过 SMS 或电子邮件发送的警报 - 但是 - 我如何转换此信息以便我可以调用加密货币交易所的 API。

例如,如果我创建一个以指定价格购买某个 ICO 的警报,那么我需要某种方法来触发 ~something~(PHP 脚本或其他),然后执行 REST 命令将在 Binance 或 Bittrex 或 .... 上创建订单。

任何关于如何做到这一点的信息、技巧或想法将不胜感激。如果有更好的东西可以使用,也请告诉我。

TIA

0 投票
0 回答
938 浏览

r - 使用 R 从 binance 获取高级指标(振荡器)

我正在通过 RStudio 使用 Binance API,我知道如何提取 Binance 上的买入/卖出/开盘/收盘价格等基本信息,但在 Binance 的高级交易图表上,我看到更多价格指标,如 EMA 或 RSI,我不想计算它们来自价格日志,因为它们不会 100% 准确。有没有办法提取我在高级模式下看到的所有指标(振荡器)(来自 Binance API 或其他 API)?在 Binance API 中找不到任何参考。

0 投票
1 回答
2667 浏览

python - 错误 pip install python-binance (命令 "/usr/bin/python -u -c "import setuptools...)

我正在尝试pip install python-binance但不能这样做:/.. 我在询问之前寻找了类似的错误,我发现了一些但是当我按照人们所说的进行操作时(例如pip install setuptools --upgrade返回错误),它仍然不起作用。有人可以帮我吗?这是终端输出的内容:

0 投票
1 回答
2006 浏览

api - 币安“事件时间”与“交易时间”

我正在查看 Binance Websocket Stream 并对事件时间和交易时间有疑问。如果这是原始交易信息,“交易”怎么会有两个不同的时间?什么是“活动时间”?

来自 github API 文档:

贸易流

贸易流推送原始贸易信息;每笔交易都有唯一的买家和卖家。

流名称:@trade

有效载荷: