GithubHelp home page GithubHelp logo

Binance Public API FetchTicker/FetchTickers will return an error: "An item with the same key has already been added. Key: BCH/BNB" about ccxt.net HOT 3 CLOSED

ccxt-net avatar ccxt-net commented on July 20, 2024
Binance Public API FetchTicker/FetchTickers will return an error: "An item with the same key has already been added. Key: BCH/BNB"

from ccxt.net.

Comments (3)

lisa3907 avatar lisa3907 commented on July 20, 2024

Try it with v1.3.2 in the link below and let us know the result.

https://github.com/lisa3907/ccxt.net/releases/tag/v1.3.2

from ccxt.net.

lisa3907 avatar lisa3907 commented on July 20, 2024

Binance public API "exchangeInfo" error. The same market-id is occurring twice for BCH/BNB. So if the same market-id is found, I modified it to skip.

from ccxt.net.

lisa3907 avatar lisa3907 commented on July 20, 2024

https://github.com/lisa3907/ccxt.net/tree/master/sample/binance

        private static int __step_no = 0;

        private static async Task Main(string[] args)
        {
            var _api = new CCXT.NET.Binance.Public.PublicApi();

            if (__step_no == 0 || __step_no == 1)
            {
                var _tickers = await _api.FetchTickers();
                if (_tickers.success == true)
                {
                    foreach (var _t in _tickers.result)
                        Console.Out.WriteLine($"symbol: {_t.symbol}, closePrice: {_t.closePrice}");
                }
                else
                {
                    Console.Out.WriteLine($"error: {_tickers.message}");
                }
            }

            Console.Out.WriteLine("hit return to exit...");
            Console.ReadLine();
        }

from ccxt.net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.