vnpy-bybit


Namevnpy-bybit JSON
Version 2024.4.12 PyPI version JSON
download
home_pagehttps://www.github.com/veighna-global
SummaryBybit trading gateway for VeighNa Evo.
upload_time2024-04-12 07:44:43
maintainerNone
docs_urlNone
authorVeighNa Global
requires_pythonNone
licenseNone
keywords quant quantitative investment trading algotrading bybit btc crypto
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Bybit trading gateway for VeighNa Evo

<p align="center">
  <img src ="https://vnpy.oss-cn-shanghai.aliyuncs.com/vnpy-logo.png"/>
</p>

<p align="center">
    <img src ="https://img.shields.io/badge/version-2024.4.12-blueviolet.svg"/>
    <img src ="https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg"/>
    <img src ="https://img.shields.io/badge/python-3.10|3.11|3.12-blue.svg" />
    <img src ="https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange"/>
</p>

## Introduction

This gateway is developed based on Bybit's V5 REST and Websocket API, and supports spot, linear contract, inverse contract and option trading.

**For derivatives contract trading, please notice:**

1. Only supports unified trading account.
2. Only supports cross margin and portfolio margin.
3. Only supports one-way position mode.

## Install

Users can easily install ``vnpy_bybit`` by pip according to the following command.

```
pip install vnpy_bybit
```

Also, users can install ``vnpy_bybit`` using the source code. Clone the repository and install as follows:

```
git clone https://github.com/veighna-global/vnpy_bybit.git && cd vnpy_bybit

python setup.py install
```

## A Simple Example

Save this as run.py.

```
from vnpy_evo.event import EventEngine
from vnpy_evo.trader.engine import MainEngine
from vnpy_evo.trader.ui import MainWindow, create_qapp

from vnpy_bybit import (
    BinanceSpotGateway,
    BinanceLinearGateway,
    BinanceInverseGateway
)


def main():
    """主入口函数"""
    qapp = create_qapp()

    event_engine = EventEngine()
    main_engine = MainEngine(event_engine)
    main_engine.add_gateway(BinanceSpotGateway)
    main_engine.add_gateway(BinanceLinearGateway)
    main_engine.add_gateway(BinanceInverseGateway)

    main_window = MainWindow(main_engine, event_engine)
    main_window.showMaximized()

    qapp.exec()


if __name__ == "__main__":
    main()
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.github.com/veighna-global",
    "name": "vnpy-bybit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "quant, quantitative, investment, trading, algotrading, bybit, btc, crypto",
    "author": "VeighNa Global",
    "author_email": "veighna@hotmail.com",
    "download_url": "https://files.pythonhosted.org/packages/63/4a/5d82035452d98984b9266121f5dce82264eb03b3d6a1c48415b4818f69cb/vnpy_bybit-2024.4.12.tar.gz",
    "platform": null,
    "description": "# Bybit trading gateway for VeighNa Evo\r\n\r\n<p align=\"center\">\r\n  <img src =\"https://vnpy.oss-cn-shanghai.aliyuncs.com/vnpy-logo.png\"/>\r\n</p>\r\n\r\n<p align=\"center\">\r\n    <img src =\"https://img.shields.io/badge/version-2024.4.12-blueviolet.svg\"/>\r\n    <img src =\"https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg\"/>\r\n    <img src =\"https://img.shields.io/badge/python-3.10|3.11|3.12-blue.svg\" />\r\n    <img src =\"https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange\"/>\r\n</p>\r\n\r\n## Introduction\r\n\r\nThis gateway is developed based on Bybit's V5 REST and Websocket API, and supports spot, linear contract, inverse contract and option trading.\r\n\r\n**For derivatives contract trading, please notice:**\r\n\r\n1. Only supports unified trading account.\r\n2. Only supports cross margin and portfolio margin.\r\n3. Only supports one-way position mode.\r\n\r\n## Install\r\n\r\nUsers can easily install ``vnpy_bybit`` by pip according to the following command.\r\n\r\n```\r\npip install vnpy_bybit\r\n```\r\n\r\nAlso, users can install ``vnpy_bybit`` using the source code. Clone the repository and install as follows:\r\n\r\n```\r\ngit clone https://github.com/veighna-global/vnpy_bybit.git && cd vnpy_bybit\r\n\r\npython setup.py install\r\n```\r\n\r\n## A Simple Example\r\n\r\nSave this as run.py.\r\n\r\n```\r\nfrom vnpy_evo.event import EventEngine\r\nfrom vnpy_evo.trader.engine import MainEngine\r\nfrom vnpy_evo.trader.ui import MainWindow, create_qapp\r\n\r\nfrom vnpy_bybit import (\r\n    BinanceSpotGateway,\r\n    BinanceLinearGateway,\r\n    BinanceInverseGateway\r\n)\r\n\r\n\r\ndef main():\r\n    \"\"\"\u4e3b\u5165\u53e3\u51fd\u6570\"\"\"\r\n    qapp = create_qapp()\r\n\r\n    event_engine = EventEngine()\r\n    main_engine = MainEngine(event_engine)\r\n    main_engine.add_gateway(BinanceSpotGateway)\r\n    main_engine.add_gateway(BinanceLinearGateway)\r\n    main_engine.add_gateway(BinanceInverseGateway)\r\n\r\n    main_window = MainWindow(main_engine, event_engine)\r\n    main_window.showMaximized()\r\n\r\n    qapp.exec()\r\n\r\n\r\nif __name__ == \"__main__\":\r\n    main()\r\n```\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Bybit trading gateway for VeighNa Evo.",
    "version": "2024.4.12",
    "project_urls": {
        "Homepage": "https://www.github.com/veighna-global"
    },
    "split_keywords": [
        "quant",
        " quantitative",
        " investment",
        " trading",
        " algotrading",
        " bybit",
        " btc",
        " crypto"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55411e3e943e6371f3c8825aa266da26c26ee195c057ff6724eb8ec8f9ca8b87",
                "md5": "399b3575fa59fab51f7a289f048e3bf6",
                "sha256": "a01307ad40281df7d9032e3b1ffd7796bbc19baaa527f045f0fc18907ff0f27f"
            },
            "downloads": -1,
            "filename": "vnpy_bybit-2024.4.12-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "399b3575fa59fab51f7a289f048e3bf6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 12083,
            "upload_time": "2024-04-12T07:44:41",
            "upload_time_iso_8601": "2024-04-12T07:44:41.783687Z",
            "url": "https://files.pythonhosted.org/packages/55/41/1e3e943e6371f3c8825aa266da26c26ee195c057ff6724eb8ec8f9ca8b87/vnpy_bybit-2024.4.12-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "634a5d82035452d98984b9266121f5dce82264eb03b3d6a1c48415b4818f69cb",
                "md5": "5b68c5347ad91b849e387e2490fa322c",
                "sha256": "f99cfc937b8649b236abc6a11ade50fc3e7fc44a7f5cea0ca0482a5a5dea610b"
            },
            "downloads": -1,
            "filename": "vnpy_bybit-2024.4.12.tar.gz",
            "has_sig": false,
            "md5_digest": "5b68c5347ad91b849e387e2490fa322c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 12351,
            "upload_time": "2024-04-12T07:44:43",
            "upload_time_iso_8601": "2024-04-12T07:44:43.680643Z",
            "url": "https://files.pythonhosted.org/packages/63/4a/5d82035452d98984b9266121f5dce82264eb03b3d6a1c48415b4818f69cb/vnpy_bybit-2024.4.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 07:44:43",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "vnpy-bybit"
}
        
Elapsed time: 0.22468s