bmino / binance-triangle-arbitrage

Detect in-market cryptocurrency arbitrage
MIT License
1.07k stars 336 forks source link

Multiple Pairs? #139

Closed naif824 closed 3 years ago

naif824 commented 3 years ago

Thanks for the great bot, Wondering how the config file would look like if I want to expand the coins being scanned to cover all possible triangles arbitrage?

bmino commented 3 years ago

As in you hold a balance of every single asset on the exchange?

bmino commented 3 years ago

You could do it for research purposes if it didn't overwhelm your cpu by getting a list of all the symbols and iterating them something like so:

"INVESTMENT": {
        "BTC": {
            "MIN": 0.010,
            "MAX": 0.015,
            "STEP": 0.005
        },
        "ETH": {
          ...
        },
        "BNB": {
          ...
        },
        "LTC": {
          ...
        },
        "LINK": {
          ...
        },
        "AAVE": {
          ...
        },
        "EOS": {
          ...
        },
        "XRP": {
          ...
        },
        ...,
        ...,
        ...
    },
naif824 commented 3 years ago

As in you hold a balance of every single asset on the exchange?

Nope, was looking to hold balance splitted into 1/4 between BTC/USDT/ETH/BNB, scanning for opportunities and buy based on positive findings.

naif824 commented 3 years ago

Looks good, how can I expand HUD size? to check 100 triangles at a time? Untitled

bmino commented 3 years ago

@naif824 CHANGE YOUR API KEY IMMEDIATELY!!

bmino commented 3 years ago

You posted your private key in that zip which is a BIG no no

I'm not sure what is going on in your HUD screenshot. Looks like the window was compressed and should be widened. You can add more trades to the view with the HUD.ROWS configuration. Check out some helpful reading on those here

bmino commented 3 years ago

closing due to inactivity