market-maker | Vastly Improved BitMEX Market Making Algo | Bot library

 by   Behappy123 Python Version: Current License: No License

kandi X-RAY | market-maker Summary

kandi X-RAY | market-maker Summary

market-maker is a Python library typically used in Automation, Bot applications. market-maker has no bugs, it has no vulnerabilities, it has build file available and it has low support. You can download it from GitHub.

This market maker works on the following principles:.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              market-maker has a low active ecosystem.
              It has 209 star(s) with 66 fork(s). There are 23 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              There are 5 open issues and 4 have been closed. On average issues are closed in 9 days. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of market-maker is current.

            kandi-Quality Quality

              market-maker has 0 bugs and 0 code smells.

            kandi-Security Security

              market-maker has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              market-maker code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              market-maker does not have a standard license declared.
              Check the repository for any license declaration and review the terms closely.
              OutlinedDot
              Without a license, all rights are reserved, and you cannot use the library in your applications.

            kandi-Reuse Reuse

              market-maker releases are not available. You will need to build from source code and install.
              Build file is available. You can build the component from source.
              Installation instructions, examples and code snippets are available.
              market-maker saves you 528 person hours of effort in developing the same functionality from scratch.
              It has 1237 lines of code, 115 functions and 21 files.
              It has high code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed market-maker and discovered the below as its top functions. This is intended to give you an instant insight into market-maker implemented functionality, and help decide if they suit your requirements.
            • Create a new key
            • Request Bitmex API
            • Log an error message
            • Connect to the websocket
            • Connect to the websocket
            • Return authentication information
            • Generate HMAC signature
            • Return the ticker for the given symbol
            • Return the instrument with the given symbol
            • Import a module
            • Cancels an order
            • Cancel an order
            • Start BitMEX Market Maker
            • Place orders in place
            • Main loop
            • Check if files have changed
            • Reset the exchange
            • Cancels all open orders
            • Prompt user for keys
            • Use bitmex
            • Create BitMEX object
            • Create bulk orders
            • Place a buy order
            • Place a new order
            • Get ticker data
            • List API keys
            Get all kandi verified functions for this library.

            market-maker Key Features

            No Key Features are available at this moment for market-maker.

            market-maker Examples and Code Snippets

            No Code Snippets are available at this moment for market-maker.

            Community Discussions

            QUESTION

            Why does this simple "hello world" Urwid code fail?
            Asked 2021-Apr-10 at 19:45

            I have a super simple program that uses Urwid for text-based UIs:

            ...

            ANSWER

            Answered 2021-Apr-10 at 19:43

            I managed to get it working by putting it inside a Filler object

            Source https://stackoverflow.com/questions/67038484

            QUESTION

            Angular Material Table binding more times that the number of rows
            Asked 2021-Apr-01 at 07:10

            I was getting bad performance on an Angular Material table. When I checked the console I could see it was binding each row multiple times although I can't see what's triggering it. I have reduced my code as simple as I can and I am still seeing the issue.

            There are 257 rows, but the count in being logged to the console counts to 1542, which means each row seems to be being bound 6 times. The formatting function decimalTimeToHours should be called once for each row. Any ideas why it's binding so many times?

            ...

            ANSWER

            Answered 2021-Apr-01 at 07:10

            The reason your decimalTimeToHours method is getting called so many times relates to how Angular change detection works. Angular keeps track of any bindings in the HTML template, and updates the browser dom when the underlying value changes. But, this isn't a magical process. In order to know when an underlying value changes, Angular has to manually keep checking if these values have changed. It takes the current value and compares it against the last value it saw for that binding. If the value changes, it updates the dom. The finer details of how and when this detection process runs is a huge topic. The important part, though, is that when change detection runs (which appears to be happening 6 times) it goes to your binding to get the current value.

            The problem stems from your use of a function there right in the template. Each time change detection wants to evaluate the value, it has to call that function in order to determine the value (which creates a new string each time), and then compares that against the old string. Not a huge problem, but it's something you could easily be avoiding. One solution would be to use an angular pipe to format the data the way you want to see it in the table:

            Source https://stackoverflow.com/questions/66892656

            QUESTION

            pip package installs okay but cannot be run
            Asked 2019-Nov-07 at 15:18

            I am wanting to install a pip package on Debian but when I install it using

            ...

            ANSWER

            Answered 2019-Nov-07 at 15:18

            To run the libraries you first need to be inside the python environment.

            At your terminal try:

            Source https://stackoverflow.com/questions/58751601

            QUESTION

            Unable to use pyexcel-xls with pyinstaller . python executable not working . python version 3.4.4
            Asked 2017-May-31 at 07:31

            The program works when run using:

            ...

            ANSWER

            Answered 2017-Mar-30 at 18:10

            The Problem

            pyexcel-io uses a method for including plug-ins that pyinstaller does not support. See this issue.

            The Workaround

            The work around for this issue has a couple of facets.

            Change needed to pyexcel

            I have submitted a Change Request which shows how to modify pyexcel to allow it to work with pyinstaller. Basically pyexcel-io needs to know how to find frozen modules.

            If the pyexcel guys pick up the Change Request, then that will get you going. But if they don't, or you are in a hurry, then copying the changed file from the change request into your site package directory as pyexcel_io/__init__.py will get pyexcel working.

            But, pyinstaller also needs to know what to include.

            pyinstaller also needs to know to include the required module. So on the pyinstaller command line you will also need to do:

            Source https://stackoverflow.com/questions/42983559

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install market-maker

            Create a [Testnet BitMEX Account](https://testnet.bitmex.com) and [deposit some TBTC](https://testnet.bitmex.com/app/deposit). Get dependencies: python setup.py install. Edit settings.py to add your [BitMEX API Key and Secret](https://testnet.bitmex.com/app/apiKeys) and change bot parameters. Run it: ./marketmaker [symbol].
            Create a [Testnet BitMEX Account](https://testnet.bitmex.com) and [deposit some TBTC](https://testnet.bitmex.com/app/deposit).
            Get dependencies: python setup.py install This will create a settings.py file at the root. Modify this file to tune parameters.
            Edit settings.py to add your [BitMEX API Key and Secret](https://testnet.bitmex.com/app/apiKeys) and change bot parameters. Note that user/password authentication is not supported. Run with DRY_RUN=True to test cost and spread.
            Run it: ./marketmaker [symbol]
            Satisfied with your bot’s performance? Create a [live API Key](https://www.bitmex.com/app/apiKeys) for your BitMEX account, set the BASE_URL and start trading!

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/Behappy123/market-maker.git

          • CLI

            gh repo clone Behappy123/market-maker

          • sshUrl

            git@github.com:Behappy123/market-maker.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link