welly87 / bybit-smm

bybit simple market maker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bybit Simple Market Maker

This is a sample market making bot for Bybit.

Getting Started

  1. Assuming you already have a Bybit account, generate API keys and secrets using this guide
  2. Swap your key/secret into the config file found in /config/bybit.yaml/
  3. Install all packages required by running 'pip install -r requirements.txt'
  4. Input the contract details in the parameters.yaml file (tick size/lot size) according to the symbol you want to make
  5. Alter the spreads, order sizes, offsets (any setting in the .yaml file) as you wish, even whilst the bot is live!

** Note, changing the primary data feed between Binance <-> Bybit will require a restart to the script **

Strategy Design/Overview

  1. Prices from Bybit (and optionally Binance) are streamed into a common shared class
  2. A market maker function generates quotes, with bias based on price based features
  • Multiple features work on comparing orderbook, trades & price behaviours to calculate skew
  • Prices and quantities are generated, with prices within a volatility range, and min/max quantity defined manually
  • The above leads to behaviour shown in examples below:
    • (Ex) If binance mid price is lower than then bybit mid price -> skew is negative -> asks are more concentrated near mid price than bids
    • (Ex) If binance price is higher than then bybit price -> skew is positive -> bids have more qty than asks
    • (Ex) If inventory is extremely long, quotes are killed on the long side to try neutralize the position
  1. Orders are sent to the exchange via diff function, which minimizes rate limit usage to shift between order states

New upgrades

  • Fast local orderbooks for both Binance & Bybit, useful for creating orderbook based features
  • Highly abstracted code (add/remove features with ease)
  • Access to Binance data feeds (LOB/Trades)

Current known bugs

  • None so far

Improvements/Additions

  • Setting up logger {High Priority}
  • Testing for order generation, get/post clients and websocket feeds {High Priority}
  • Simpler execution and order feed handlers (reworked for time-based and orderId based indexing) {Medium Priority}
  • Customized rounding for bid/ask {Low Priority}

Upcoming upgrades

  • Optional TWAP to reduce inventory (alongside purging quotes)
  • Avellaneda and Stoikov's basic market making model
  • More advanced orderbook & trades features

If you have any questions or suggestions regarding the repo, or just want to have a chat, my handles are below 👇🏼

Twitter: @beatzXBT | Discord: gamingbeatz

About

bybit simple market maker

License:MIT License


Languages

Language:Python 100.0%