backtrader-bybit


Namebacktrader-bybit JSON
Version 2.0.8 PyPI version JSON
download
home_pagehttps://github.com/WISEPLAT/backtrader_bybit
SummaryBybit API integration with Backtrader
upload_time2024-04-06 04:53:12
maintainerNone
docs_urlNone
authorwiseplat
requires_python>=3.7
licenseMIT License
keywords trading development
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # backtrader_bybit

Bybit API integration with [Backtrader](https://github.com/WISEPLAT/backtrader).



With this integration you can do:

 - Backtesting your strategy on historical data from the exchange [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader )  // Backtesting 

 - Launch trading systems for automatic trading on the exchange [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader ) // Live trading

 - Download historical data for cryptocurrencies from the exchange [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230)



For API connection we are using library [pybit](https://github.com/bybit-exchange/pybit).



✅ Online Example for [ByBit BACKTEST Trading Strategy for BTC and ETH #2](https://www.kaggle.com/code/olegshpagin/bybit-backtest-trading-strategy-for-btc-and-eth-2)



✅ Online Example for [LIVE Trading Strategy for Ethereum on Bybit](https://www.kaggle.com/code/olegshpagin/live-trading-strategy-for-ethereum-on-bybit)





**You can say Thanks:**



USDT (Tron TRC20): TEHaXZX7KLjAm4eLWdf4VKfsqRUQpv8fTT



BTC (Bitcoin BTC): 1ENhx1HUMJZjGAfYaT1vfsqwKHgVkqwX1D



ETH (Ethereum ERC20): 0xfd546640c911ba90d1409a4fbbb4322ae73e7814



or by [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) **UID** (no commission) **112927970** through the exchange



## Installation

1) The simplest way:

```shell

pip install backtrader_bybit

```

or

```shell

git clone https://github.com/WISEPLAT/backtrader_bybit

```

or

```shell

pip install git+https://github.com/WISEPLAT/backtrader_bybit.git

```



2) Please use backtrader from my repository (as your can push your commits in it). Install it:

```shell

pip install git+https://github.com/WISEPLAT/backtrader.git

```

-- Can I use your bybit interface with original backtrader?



-- Yes, you can use original backtrader, as the author of original backtrader had approved all my changes. 



Here is the link: [mementum/backtrader#472](https://github.com/mementum/backtrader/pull/472)



3) We have some dependencies, you need to install them: 

```shell

pip install pybit pycryptodome backtrader pandas matplotlib

```



or



```shell

pip install -r requirements.txt

```



### Getting started

To make it easier to figure out how everything works, many examples have been made in the folders **DataExamplesBybit** and **StrategyExamplesBybit**.



Before running the example, you need to get your API key, Secret key and Type of Account, and put them in the file **ConfigBybit\Config.py:**



```python

# content of ConfigBybit\Config.py 

class Config:

    BYBIT_API_KEY = "YOUR_API_KEY"

    BYBIT_API_SECRET = "YOUR_SECRET_KEY"

    BYBIT_ACCOUNT_TYPE = "UNIFIED"  # UNIFIED or CONTRACT

```



#### How to get a Bybit API token:

1. Register your account on [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 )

2. Go to ["Profile" -> "API Management"](https://www.bybit.com/app/user/api-management?ref=KXLXXE%230 ) 

3. Then push the button "Create New Key" and select "System generated"

4. In "API Key restrictions" enable "Read-Write" and in "Unified Trading"->"SPOT" enable "Trade"

5. Copy and paste to the file **ConfigBybit\Config.py ** received **"API key"** and **"Secret key"**



#### Now you can run examples



The **DataExamplesBybit** folder contains the code of examples for working with exchange data via the [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) API.



* **01 - Symbol.py** - trading strategy for obtaining historical and "live" data of one ticker for one timeframe

* **02 - Symbol data to DF.py** - export to csv file of historical data of one ticker for one timeframe

* **03 - Symbols.py** - trading strategy for multiple tickers on the same timeframe

* **04 - Resample.py** - trading strategy for obtaining data from one ticker for different timeframes by converting a smaller timeframe into a larger one

* **05 - Replay.py** - launching a trading strategy on a smaller timeframe, with processing on a larger one and displaying a larger interval chart

* **06 - Rollover.py** - launch of a trading strategy based on gluing data from a file with historical data and the last downloaded history from the broker

* **08 - Timeframes.py** - trading strategy is running on different timeframes.

* **09 - Get Asset Info - through client.py** - getting info about asset: balance, lot size, min price step, min value to buy and etc.

* **Strategy.py** - An example of a trading strategy that only outputs data of the OHLCV for ticker/tickers



The **StrategyExamplesBybit** folder contains the code of sample strategies.



* **01 - Live Trade - Just Buy and Sell.py** - An example of a live trading strategy for ETH ticker on the base USDT ticker.

  * The strategy shows how to Buy at Market or Limit order and how to Cancel order.

  * Example of placing and cancel orders on the Bybit exchange.

    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed....

    * Please be aware! For Market order - it will be completed!

    * **Do not forget to cancel the submitted orders from the exchange after the test!**



* **01 - Live Trade.py** - An example of a live trading strategy for two BTC and ETH tickers on the base USDT ticker.

  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.

  * Example of placing and cancel orders on the Bybit exchange.

    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed.... 

    * **Do not forget to cancel the submitted orders from the exchange after the test!**





* **02 - Live Trade MultiPortfolio.py** - An example of a live trading strategy for a set of tickers that can be transferred to the strategy in a list (BTC, ETH, BNB) on the base USDT ticker.

  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.

  * Example of placing and cancel orders on the Bybit exchange.

    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed.... 

    * **Do not forget to cancel the submitted orders from the exchange after the test!**





* **03 - Live Trade ETH.py** - An example of a live trading strategy for two BNB and XMR tickers on the basic ETH ticker.

  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.

  * Example of placing and cancel orders on the Bybit exchange.

    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed.... 

    * **Do not forget to cancel the submitted orders from the exchange after the test!**





* **04 - Offline Backtest.py** - An example of a trading strategy on a historical data - not live mode - for two BTC and ETH tickers on the base USDT ticker.

  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.

    * Not a live mode - for testing strategies without sending orders to the exchange!





* **05 - Offline Backtest MultiPortfolio.py** - An example of a trading strategy on a historical data - not live mode - for a set of tickers that can be transferred to the strategy in a list (BTC, ETH, BNB) on the base USDT ticker.

  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.

    * Not a live mode - for testing strategies without sending orders to the exchange!





* **06 - Live Trade Just Buy and Close by Market.py** - An example of a live trading strategy for ETH ticker on the base USDT ticker.

  * The strategy shows how to buy by close price and sell by market a little value of ETH after 3 bars.

  * Example of placing orders on the Bybit exchange.

    * **Do not forget to cancel the submitted orders from the exchange after the test!**





* **07 - Offline Backtest Indicators.py** - An example of a trading strategy for a history test using SMA and RSI indicators - not live mode - for two BTC and ETH tickers on the base USDT ticker.

  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.

    * generates 177% of revenue at the time of video recording))

    * Non-live mode - for testing strategies without sending orders to the exchange!





* **08 - Offline Backtest Margin Trade with Leverage 50x - Linear Trade.py** - An example of a trading strategy with the use of margin Leverage 50x for a history backtest using SMA indicators - not live mode - for two BTC and ETH tickers on the base of USDT ticker.

  * The strategy shows how to apply indicators SMA to several tickers at the same time.

    * generates 792% of revenue at the time of file publishing

    * Non-live mode - for testing strategies without sending orders to the exchange!

  * The strategy shows how to use margin with Leverage 50x for backtest on history market data for cryptocurrencies.

```commandline

$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

Was money: 2000.00

Ending Portfolio Value: 17853.46

Remaining available funds: 4887.38

Assets in the amount of: 12966.08



2000.00 ==> 17853.46 ==> +792.67%



SQN:  AutoOrderedDict([('sqn', 1.0031776139642996), ('trades', 4)])

VWR:  OrderedDict([('vwr', 25.613023915870777)])

TDD:  OrderedDict([('maxdrawdown', 65.77087178559279), ('maxdrawdownperiod', 304)])

DD:  AutoOrderedDict([('len', 6), ('drawdown', 20.46618403019286), ('moneydown', 229.70872494394746), ('max', AutoOrderedDict([('len', 304), ('drawdown', 65.77087178559279), ('moneydown', 295.8359186842)]))])

AR:  OrderedDict([(2021, 0.0), (2022, -0.42822236821405035), (2023, 4.540830244681184), (2024, 1.8176719585784271)])

Profitability:  OrderedDict([('rtot', 2.1890502317806253), ('ravg', 0.0022178827069712515), ('rnorm', 0.7487590850582526), ('rnorm100', 74.87590850582527)])

$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

```



## Thanks

- backtrader: Very simple and cool library!

- [pybit](https://github.com/bybit-exchange/pybit): For creating Bybit API wrapper, shortening a lot of work.



## License

[MIT](https://choosealicense.com/licenses/mit)



## Important

Error correction, revision and development of the library is carried out by the author and the community!



**Push your commits!**



## Terms of Use

The backtrader_bybit library, which allows you to integrate Backtrader and Bybit API, is the **Program** created solely for the convenience of work.

When using the **Program**, the User is obliged to comply with the provisions of the current legislation of his country.

Using the **Program** are offered on an "AS IS" basis. No guarantees, either oral or written, are attached and are not provided.

The author and the community does not guarantee that all errors of the **Program** have been eliminated, respectively, the author and the community do not bear any responsibility for

the consequences of using the **Program**, including, but not limited to, any damage to equipment, computers, mobile devices,

User software caused by or related to the use of the **Program**, as well as for any financial losses

incurred by the User as a result of using the **Program**.

No one is responsible for data loss, losses, damages, including accidental or indirect, lost profits, loss of revenue or any other losses

related to the use of the **Program**.



The **Program** is distributed under the terms of the [MIT](https://choosealicense.com/licenses/mit ) license.



## Star History



Please put a Star 🌟 for this code



[![Star History Chart](https://api.star-history.com/svg?repos=WISEPLAT/backtrader_bybit&type=Timeline)](https://star-history.com/#WISEPLAT/backtrader_bybit&Timeline)



Пожалуйста, поставьте Звезду 🌟 этому коду



==========================================================================



# backtrader_bybit



Интеграция Bybit API с [Backtrader](https://github.com/WISEPLAT/backtrader ).



С помощью этой интеграции вы можете делать:

- Тестирование вашей стратегии на исторических данных с биржи [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader )

- Запускать торговые системы для автоматической торговли на бирже [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader ) 

- Загружать исторические данные по криптовалютам с биржи [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 )



Для подключения к API мы используем библиотеку [pybit](https://github.com/bybit-exchange/pybit ).



✅ Online Пример для [ByBit BACKTEST Trading Strategy for BTC and ETH #2](https://www.kaggle.com/code/olegshpagin/bybit-backtest-trading-strategy-for-btc-and-eth-2)



✅ Online Пример для [LIVE Trading Strategy for Ethereum on Bybit](https://www.kaggle.com/code/olegshpagin/live-trading-strategy-for-ethereum-on-bybit)





**Можно сказать Спасибо:**



USDT (Tron TRC20): TEHaXZX7KLjAm4eLWdf4VKfsqRUQpv8fTT



BTC (Bitcoin BTC): 1ENhx1HUMJZjGAfYaT1vfsqwKHgVkqwX1D



ETH (Ethereum ERC20): 0xfd546640c911ba90d1409a4fbbb4322ae73e7814



или по [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) **UID** (без комиссии) **112927970** через биржу 





## Установка

1) Самый простой способ:

```shell

pip install backtrader_bybit

```

или

```shell

git clone https://github.com/WISEPLAT/backtrader_bybit

```

или

```shell

pip install git+https://github.com/WISEPLAT/backtrader_bybit.git

```



2) Пожалуйста, используйте backtrader из моего репозитория (так как вы можете размещать в нем свои коммиты). Установите его:

```shell

pip install git+https://github.com/WISEPLAT/backtrader.git

```

-- Могу ли я использовать ваш интерфейс bybit с оригинальным backtrader?



-- Да, вы можете использовать оригинальный backtrader, так как автор оригинального backtrader одобрил все мои изменения.



Вот ссылка: [mementum/backtrader#472](https://github.com/mementum/backtrader/pull/472)



3) У нас есть некоторые зависимости, вам нужно их установить:

```shell

pip install pybit pycryptodome backtrader pandas matplotlib

```



или



```shell

pip install -r requirements.txt

```



### Начало работы

Чтобы было легче разобраться как всё работает, сделано множество примеров в папках **DataExamplesBybit_ru** и **StrategyExamplesBybit_ru**.



Перед запуском примера, необходимо получить свой API ключ, Secret ключ и Тип аккаунта, и прописать их в файле **ConfigBybit\Config.py:**



```python

# content of ConfigBybit\Config.py 

class Config:

    BYBIT_API_KEY = "YOUR_API_KEY"

    BYBIT_API_SECRET = "YOUR_SECRET_KEY"

    BYBIT_ACCOUNT_TYPE = "UNIFIED"  # UNIFIED or CONTRACT

```



####  Как получить токен Bybit API:

1. Зарегистрируйте свой аккаунт на [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 )

2. Перейдите в ["Профиль" -> """Управление API"](https://www.bybit.com/app/user/api-management?ref=KXLXXE%230 )

3. Затем нажмите кнопку "Создать Новый Ключ" и выберите "Сгенерированный системой".

4. В разделе "Разрешения API ключа" включите ""Чтение и запись" и в "Единый торговый аккаунт"->"СПОТ" включите "Торговать".

5. Скопируйте и вставьте в файл **ConfigBybit\Config.py** полученные **"Ключ API"** и **"Секретный ключ"**



#### Теперь можно запускать примеры



В папке **DataExamplesBybit_ru** находится код примеров по работе с биржевыми данными через API интерфейс [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ).



* **01 - Symbol.py** - торговая стратегия для получения исторических и "живых" данных одного тикера по одному таймфрейму

* **02 - Symbol data to DF.py** - экспорт в csv файл исторических данных одного тикера по одному таймфрейму

* **03 - Symbols.py** - торговая стратегия для нескольких тикеров по одному таймфрейму

* **04 - Resample.py** - торговая стратегия для получения данных одного тикера по разным таймфреймам методом конвертации меньшего таймфрейма в больший

* **05 - Replay.py** - запуск торговой стратегии на меньшем таймфрейме, с обработкой на большем и выводом графика большего интервала

* **06 - Rollover.py** - запуск торговой стратегии на склейке данных из файла с историческими данными и последней загруженной истории с брокера

* **08 - Timeframes.py** - торговая стратегия для одного тикера по разным таймфреймам

* **09 - Get Asset Info - through client.py** - получение информации об активе: баланс, размер лота, минимальный шаг цены, минимальная стоимость покупки и т.д.

* **Strategy.py** - Пример торговой стратегии, которая только выводит данные по тикеру/тикерам OHLCV



В папке **StrategyExamplesBybit_ru** находится код примеров стратегий.  



* **01 - Live Trade - Just Buy and Sell.py** - Пример торговой стратегии в live режиме для ETH на базовом тикере USDT. 

  * В стратегии показано как выставлять Ордер по Рынку и Лимитный ордер и как отменять ордер. 

  * Пример выставления заявок на биржу Bybit и их снятие.

    * Пожалуйста, имейте в виду! Это live режим - если на рынке произойдет значительное изменение цены в сторону понижения более чем на 5% - ордер может быть выполнен....

    * Пожалуйста, имейте в виду! Для ордера по Рынку - он будет выполнен....

    * **Не забудьте после теста снять с биржи выставленные заявки!**



* **01 - Live Trade.py** - Пример торговой стратегии в live режиме для двух тикеров BTC и ETH на базовом тикере USDT. 

  * В стратегии показано как применять индикаторы (SMA, RSI) к нескольким тикерам одновременно. 

  * Пример выставления заявок на биржу Bybit и их снятие.

    * Пожалуйста, имейте в виду! Это live режим - если на рынке произойдет значительное изменение цены в сторону понижения более чем на 5% - ордер может быть выполнен.... 

    * **Не забудьте после теста снять с биржи выставленные заявки!**





* **02 - Live Trade MultiPortfolio.py** - Пример торговой стратегии в live режиме для множества тикеров, которые можно передавать в стратегию списком (BTC, ETH, BNB) на базовом тикере USDT. 

  * В стратегии показано как применять индикаторы (SMA, RSI) к нескольким тикерам одновременно. 

  * Пример выставления заявок на биржу Bybit и их снятие.

    * Пожалуйста, имейте в виду! Это live режим - если на рынке произойдет значительное изменение цены в сторону понижения более чем на 5% - ордер может быть выполнен....

    * **Не забудьте после теста снять с биржи выставленные заявки!**





* **03 - Live Trade ETH.py** - Пример торговой стратегии в live режиме для двух тикеров BNB и XMR на базовом тикере ETH. 

  * В стратегии показано как применять индикаторы (SMA, RSI) к нескольким тикерам одновременно. 

  * Пример выставления заявок на биржу Bybit и их снятие.

    * Пожалуйста, имейте в виду! Это live режим - если на рынке произойдет значительное изменение цены в сторону понижения более чем на 5% - ордер может быть выполнен....

    * **Не забудьте после теста снять с биржи выставленные заявки!**





* **04 - Offline Backtest.py** - Пример торговой стратегии для теста на истории - не live режим - для двух тикеров BTC и ETH на базовом тикере USDT. 

  * В стратегии показано как применять индикаторы (SMA, RSI) к нескольким тикерам одновременно.

    * Не live режим - для тестирования стратегий без отправки заявок на биржу!





* **05 - Offline Backtest MultiPortfolio.py** - Пример торговой стратегии для теста на истории - не live режим - для множества тикеров, которые можно передавать в стратегию списком (BTC, ETH, BNB) на базовом тикере USDT. 

  * В стратегии показано как применять индикаторы (SMA, RSI) к нескольким тикерам одновременно.

    * Не live режим - для тестирования стратегий без отправки заявок на биржу!





* **06 - Live Trade Just Buy and Close by Market.py** - Пример торговой стратегии в live для тикера ETH на базовом тикере USDT.

  * Стратегия показывает, как покупать по цене закрытия и продавать по рыночной небольшое количество ETH через 3 бара.

  * Пример размещения ордеров на бирже Bybit.

    * **Не забудьте отменить выставленные ордера с биржи после тестирования!**





* **07 - Offline Backtest Indicators.py** - Пример торговой стратегии для теста на истории с использованием индикаторов SMA и RSI - не live режим - для двух тикеров BTC и ETH на базовом тикере USDT. 

  * В стратегии показано как применять индикаторы (SMA, RSI) к нескольким тикерам одновременно.

    * генерит 177% дохода на момент записи видео )) 

    * Не live режим - для тестирования стратегий без отправки заявок на биржу!





* **08 - Offline Backtest Margin Trade with Leverage 50x - Linear Trade.py** - Пример торговой стратегии с использованием маржинального плеча 50x для исторического бэктеста с использованием индикаторов SMA - не в режиме реального времени - для двух тикеров BTC и ETH на основе тикера USDT.

  * Стратегия показывает, как применять индикаторы SMA к нескольким тикерам одновременно.

    * генерирует 792% дохода на момент публикации файла

    * Не live режим - для тестирования стратегий без отправки ордеров на биржу!!

  * Стратегия показывает, как использовать маржинальную торговлю с кредитным плечом 50x для тестирования на исторических рыночных данных для криптовалют.

```commandline

$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

Was money: 2000.00

Ending Portfolio Value: 17853.46

Remaining available funds: 4887.38

Assets in the amount of: 12966.08



2000.00 ==> 17853.46 ==> +792.67%



SQN:  AutoOrderedDict([('sqn', 1.0031776139642996), ('trades', 4)])

VWR:  OrderedDict([('vwr', 25.613023915870777)])

TDD:  OrderedDict([('maxdrawdown', 65.77087178559279), ('maxdrawdownperiod', 304)])

DD:  AutoOrderedDict([('len', 6), ('drawdown', 20.46618403019286), ('moneydown', 229.70872494394746), ('max', AutoOrderedDict([('len', 304), ('drawdown', 65.77087178559279), ('moneydown', 295.8359186842)]))])

AR:  OrderedDict([(2021, 0.0), (2022, -0.42822236821405035), (2023, 4.540830244681184), (2024, 1.8176719585784271)])

Profitability:  OrderedDict([('rtot', 2.1890502317806253), ('ravg', 0.0022178827069712515), ('rnorm', 0.7487590850582526), ('rnorm100', 74.87590850582527)])

$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

```



## Спасибо

- backtrader: очень простая и классная библиотека!

- [pybit](https://github.com/bybit-exchange/pybit ): Для создания оболочки Bybit API, сокращающей большую часть работы.



## Важно

Исправление ошибок, доработка и развитие библиотеки осуществляется автором и сообществом!



**Пушьте ваши коммиты!** 



# Условия использования

Библиотека backtrader_bybit позволяющая делать интеграцию Backtrader и Bybit API - это **Программа** созданная исключительно для удобства работы.

При использовании **Программы** Пользователь обязан соблюдать положения действующего законодательства Российской Федерации или своей страны.

Использование **Программы** предлагается по принципу «Как есть» («AS IS»). Никаких гарантий, как устных, так и письменных не прилагается и не предусматривается.

Автор и сообщество не дает гарантии, что все ошибки **Программы** были устранены, соответственно автор и сообщество не несет никакой ответственности за

последствия использования **Программы**, включая, но, не ограничиваясь любым ущербом оборудованию, компьютерам, мобильным устройствам, 

программному обеспечению Пользователя вызванным или связанным с использованием **Программы**, а также за любые финансовые потери,

понесенные Пользователем в результате использования **Программы**.

Никто не ответственен за потерю данных, убытки, ущерб, включаю случайный или косвенный, упущенную выгоду, потерю доходов или любые другие потери,

связанные с использованием **Программы**.



**Программа** распространяется на условиях лицензии [MIT](https://choosealicense.com/licenses/mit).


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/WISEPLAT/backtrader_bybit",
    "name": "backtrader-bybit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "trading, development",
    "author": "wiseplat",
    "author_email": "oshpagin@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/19/61/b15e35fd9e90e4b7e20080b152f205f37d126b97c9ac87aaed64f2affbe8/backtrader_bybit-2.0.8.tar.gz",
    "platform": null,
    "description": "# backtrader_bybit\r\n\r\nBybit API integration with [Backtrader](https://github.com/WISEPLAT/backtrader).\r\n\r\n\r\n\r\nWith this integration you can do:\r\n\r\n - Backtesting your strategy on historical data from the exchange [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader )  // Backtesting \r\n\r\n - Launch trading systems for automatic trading on the exchange [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader ) // Live trading\r\n\r\n - Download historical data for cryptocurrencies from the exchange [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230)\r\n\r\n\r\n\r\nFor API connection we are using library [pybit](https://github.com/bybit-exchange/pybit).\r\n\r\n\r\n\r\n\u2705 Online Example for [ByBit BACKTEST Trading Strategy for BTC and ETH #2](https://www.kaggle.com/code/olegshpagin/bybit-backtest-trading-strategy-for-btc-and-eth-2)\r\n\r\n\r\n\r\n\u2705 Online Example for [LIVE Trading Strategy for Ethereum on Bybit](https://www.kaggle.com/code/olegshpagin/live-trading-strategy-for-ethereum-on-bybit)\r\n\r\n\r\n\r\n\r\n\r\n**You can say Thanks:**\r\n\r\n\r\n\r\nUSDT (Tron TRC20): TEHaXZX7KLjAm4eLWdf4VKfsqRUQpv8fTT\r\n\r\n\r\n\r\nBTC (Bitcoin BTC): 1ENhx1HUMJZjGAfYaT1vfsqwKHgVkqwX1D\r\n\r\n\r\n\r\nETH (Ethereum ERC20): 0xfd546640c911ba90d1409a4fbbb4322ae73e7814\r\n\r\n\r\n\r\nor by [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) **UID** (no commission) **112927970** through the exchange\r\n\r\n\r\n\r\n## Installation\r\n\r\n1) The simplest way:\r\n\r\n```shell\r\n\r\npip install backtrader_bybit\r\n\r\n```\r\n\r\nor\r\n\r\n```shell\r\n\r\ngit clone https://github.com/WISEPLAT/backtrader_bybit\r\n\r\n```\r\n\r\nor\r\n\r\n```shell\r\n\r\npip install git+https://github.com/WISEPLAT/backtrader_bybit.git\r\n\r\n```\r\n\r\n\r\n\r\n2) Please use backtrader from my repository (as your can push your commits in it). Install it:\r\n\r\n```shell\r\n\r\npip install git+https://github.com/WISEPLAT/backtrader.git\r\n\r\n```\r\n\r\n-- Can I use your bybit interface with original backtrader?\r\n\r\n\r\n\r\n-- Yes, you can use original backtrader, as the author of original backtrader had approved all my changes. \r\n\r\n\r\n\r\nHere is the link: [mementum/backtrader#472](https://github.com/mementum/backtrader/pull/472)\r\n\r\n\r\n\r\n3) We have some dependencies, you need to install them: \r\n\r\n```shell\r\n\r\npip install pybit pycryptodome backtrader pandas matplotlib\r\n\r\n```\r\n\r\n\r\n\r\nor\r\n\r\n\r\n\r\n```shell\r\n\r\npip install -r requirements.txt\r\n\r\n```\r\n\r\n\r\n\r\n### Getting started\r\n\r\nTo make it easier to figure out how everything works, many examples have been made in the folders **DataExamplesBybit** and **StrategyExamplesBybit**.\r\n\r\n\r\n\r\nBefore running the example, you need to get your API key, Secret key and Type of Account, and put them in the file **ConfigBybit\\Config.py:**\r\n\r\n\r\n\r\n```python\r\n\r\n# content of ConfigBybit\\Config.py \r\n\r\nclass Config:\r\n\r\n    BYBIT_API_KEY = \"YOUR_API_KEY\"\r\n\r\n    BYBIT_API_SECRET = \"YOUR_SECRET_KEY\"\r\n\r\n    BYBIT_ACCOUNT_TYPE = \"UNIFIED\"  # UNIFIED or CONTRACT\r\n\r\n```\r\n\r\n\r\n\r\n#### How to get a Bybit API token:\r\n\r\n1. Register your account on [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 )\r\n\r\n2. Go to [\"Profile\" -> \"API Management\"](https://www.bybit.com/app/user/api-management?ref=KXLXXE%230 ) \r\n\r\n3. Then push the button \"Create New Key\" and select \"System generated\"\r\n\r\n4. In \"API Key restrictions\" enable \"Read-Write\" and in \"Unified Trading\"->\"SPOT\" enable \"Trade\"\r\n\r\n5. Copy and paste to the file **ConfigBybit\\Config.py ** received **\"API key\"** and **\"Secret key\"**\r\n\r\n\r\n\r\n#### Now you can run examples\r\n\r\n\r\n\r\nThe **DataExamplesBybit** folder contains the code of examples for working with exchange data via the [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) API.\r\n\r\n\r\n\r\n* **01 - Symbol.py** - trading strategy for obtaining historical and \"live\" data of one ticker for one timeframe\r\n\r\n* **02 - Symbol data to DF.py** - export to csv file of historical data of one ticker for one timeframe\r\n\r\n* **03 - Symbols.py** - trading strategy for multiple tickers on the same timeframe\r\n\r\n* **04 - Resample.py** - trading strategy for obtaining data from one ticker for different timeframes by converting a smaller timeframe into a larger one\r\n\r\n* **05 - Replay.py** - launching a trading strategy on a smaller timeframe, with processing on a larger one and displaying a larger interval chart\r\n\r\n* **06 - Rollover.py** - launch of a trading strategy based on gluing data from a file with historical data and the last downloaded history from the broker\r\n\r\n* **08 - Timeframes.py** - trading strategy is running on different timeframes.\r\n\r\n* **09 - Get Asset Info - through client.py** - getting info about asset: balance, lot size, min price step, min value to buy and etc.\r\n\r\n* **Strategy.py** - An example of a trading strategy that only outputs data of the OHLCV for ticker/tickers\r\n\r\n\r\n\r\nThe **StrategyExamplesBybit** folder contains the code of sample strategies.\r\n\r\n\r\n\r\n* **01 - Live Trade - Just Buy and Sell.py** - An example of a live trading strategy for ETH ticker on the base USDT ticker.\r\n\r\n  * The strategy shows how to Buy at Market or Limit order and how to Cancel order.\r\n\r\n  * Example of placing and cancel orders on the Bybit exchange.\r\n\r\n    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed....\r\n\r\n    * Please be aware! For Market order - it will be completed!\r\n\r\n    * **Do not forget to cancel the submitted orders from the exchange after the test!**\r\n\r\n\r\n\r\n* **01 - Live Trade.py** - An example of a live trading strategy for two BTC and ETH tickers on the base USDT ticker.\r\n\r\n  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.\r\n\r\n  * Example of placing and cancel orders on the Bybit exchange.\r\n\r\n    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed.... \r\n\r\n    * **Do not forget to cancel the submitted orders from the exchange after the test!**\r\n\r\n\r\n\r\n\r\n\r\n* **02 - Live Trade MultiPortfolio.py** - An example of a live trading strategy for a set of tickers that can be transferred to the strategy in a list (BTC, ETH, BNB) on the base USDT ticker.\r\n\r\n  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.\r\n\r\n  * Example of placing and cancel orders on the Bybit exchange.\r\n\r\n    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed.... \r\n\r\n    * **Do not forget to cancel the submitted orders from the exchange after the test!**\r\n\r\n\r\n\r\n\r\n\r\n* **03 - Live Trade ETH.py** - An example of a live trading strategy for two BNB and XMR tickers on the basic ETH ticker.\r\n\r\n  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.\r\n\r\n  * Example of placing and cancel orders on the Bybit exchange.\r\n\r\n    * Please be aware! This is Live order - if market has a big change down in value of price more than 5% - the order will be completed.... \r\n\r\n    * **Do not forget to cancel the submitted orders from the exchange after the test!**\r\n\r\n\r\n\r\n\r\n\r\n* **04 - Offline Backtest.py** - An example of a trading strategy on a historical data - not live mode - for two BTC and ETH tickers on the base USDT ticker.\r\n\r\n  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.\r\n\r\n    * Not a live mode - for testing strategies without sending orders to the exchange!\r\n\r\n\r\n\r\n\r\n\r\n* **05 - Offline Backtest MultiPortfolio.py** - An example of a trading strategy on a historical data - not live mode - for a set of tickers that can be transferred to the strategy in a list (BTC, ETH, BNB) on the base USDT ticker.\r\n\r\n  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.\r\n\r\n    * Not a live mode - for testing strategies without sending orders to the exchange!\r\n\r\n\r\n\r\n\r\n\r\n* **06 - Live Trade Just Buy and Close by Market.py** - An example of a live trading strategy for ETH ticker on the base USDT ticker.\r\n\r\n  * The strategy shows how to buy by close price and sell by market a little value of ETH after 3 bars.\r\n\r\n  * Example of placing orders on the Bybit exchange.\r\n\r\n    * **Do not forget to cancel the submitted orders from the exchange after the test!**\r\n\r\n\r\n\r\n\r\n\r\n* **07 - Offline Backtest Indicators.py** - An example of a trading strategy for a history test using SMA and RSI indicators - not live mode - for two BTC and ETH tickers on the base USDT ticker.\r\n\r\n  * The strategy shows how to apply indicators (SMA, RSI) to several tickers at the same time.\r\n\r\n    * generates 177% of revenue at the time of video recording))\r\n\r\n    * Non-live mode - for testing strategies without sending orders to the exchange!\r\n\r\n\r\n\r\n\r\n\r\n* **08 - Offline Backtest Margin Trade with Leverage 50x - Linear Trade.py** - An example of a trading strategy with the use of margin Leverage 50x for a history backtest using SMA indicators - not live mode - for two BTC and ETH tickers on the base of USDT ticker.\r\n\r\n  * The strategy shows how to apply indicators SMA to several tickers at the same time.\r\n\r\n    * generates 792% of revenue at the time of file publishing\r\n\r\n    * Non-live mode - for testing strategies without sending orders to the exchange!\r\n\r\n  * The strategy shows how to use margin with Leverage 50x for backtest on history market data for cryptocurrencies.\r\n\r\n```commandline\r\n\r\n$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\r\n\r\nWas money: 2000.00\r\n\r\nEnding Portfolio Value: 17853.46\r\n\r\nRemaining available funds: 4887.38\r\n\r\nAssets in the amount of: 12966.08\r\n\r\n\r\n\r\n2000.00 ==> 17853.46 ==> +792.67%\r\n\r\n\r\n\r\nSQN:  AutoOrderedDict([('sqn', 1.0031776139642996), ('trades', 4)])\r\n\r\nVWR:  OrderedDict([('vwr', 25.613023915870777)])\r\n\r\nTDD:  OrderedDict([('maxdrawdown', 65.77087178559279), ('maxdrawdownperiod', 304)])\r\n\r\nDD:  AutoOrderedDict([('len', 6), ('drawdown', 20.46618403019286), ('moneydown', 229.70872494394746), ('max', AutoOrderedDict([('len', 304), ('drawdown', 65.77087178559279), ('moneydown', 295.8359186842)]))])\r\n\r\nAR:  OrderedDict([(2021, 0.0), (2022, -0.42822236821405035), (2023, 4.540830244681184), (2024, 1.8176719585784271)])\r\n\r\nProfitability:  OrderedDict([('rtot', 2.1890502317806253), ('ravg', 0.0022178827069712515), ('rnorm', 0.7487590850582526), ('rnorm100', 74.87590850582527)])\r\n\r\n$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\r\n\r\n```\r\n\r\n\r\n\r\n## Thanks\r\n\r\n- backtrader: Very simple and cool library!\r\n\r\n- [pybit](https://github.com/bybit-exchange/pybit): For creating Bybit API wrapper, shortening a lot of work.\r\n\r\n\r\n\r\n## License\r\n\r\n[MIT](https://choosealicense.com/licenses/mit)\r\n\r\n\r\n\r\n## Important\r\n\r\nError correction, revision and development of the library is carried out by the author and the community!\r\n\r\n\r\n\r\n**Push your commits!**\r\n\r\n\r\n\r\n## Terms of Use\r\n\r\nThe backtrader_bybit library, which allows you to integrate Backtrader and Bybit API, is the **Program** created solely for the convenience of work.\r\n\r\nWhen using the **Program**, the User is obliged to comply with the provisions of the current legislation of his country.\r\n\r\nUsing the **Program** are offered on an \"AS IS\" basis. No guarantees, either oral or written, are attached and are not provided.\r\n\r\nThe author and the community does not guarantee that all errors of the **Program** have been eliminated, respectively, the author and the community do not bear any responsibility for\r\n\r\nthe consequences of using the **Program**, including, but not limited to, any damage to equipment, computers, mobile devices,\r\n\r\nUser software caused by or related to the use of the **Program**, as well as for any financial losses\r\n\r\nincurred by the User as a result of using the **Program**.\r\n\r\nNo one is responsible for data loss, losses, damages, including accidental or indirect, lost profits, loss of revenue or any other losses\r\n\r\nrelated to the use of the **Program**.\r\n\r\n\r\n\r\nThe **Program** is distributed under the terms of the [MIT](https://choosealicense.com/licenses/mit ) license.\r\n\r\n\r\n\r\n## Star History\r\n\r\n\r\n\r\nPlease put a Star \ud83c\udf1f for this code\r\n\r\n\r\n\r\n[![Star History Chart](https://api.star-history.com/svg?repos=WISEPLAT/backtrader_bybit&type=Timeline)](https://star-history.com/#WISEPLAT/backtrader_bybit&Timeline)\r\n\r\n\r\n\r\n\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0417\u0432\u0435\u0437\u0434\u0443 \ud83c\udf1f \u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u0434\u0443\r\n\r\n\r\n\r\n==========================================================================\r\n\r\n\r\n\r\n# backtrader_bybit\r\n\r\n\r\n\r\n\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f Bybit API \u0441 [Backtrader](https://github.com/WISEPLAT/backtrader ).\r\n\r\n\r\n\r\n\u0421 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u044d\u0442\u043e\u0439 \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0435\u043b\u0430\u0442\u044c:\r\n\r\n- \u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u0430\u0448\u0435\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043d\u0430 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u0431\u0438\u0440\u0436\u0438 [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader )\r\n\r\n- \u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0442\u043e\u0440\u0433\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0442\u043e\u0440\u0433\u043e\u0432\u043b\u0438 \u043d\u0430 \u0431\u0438\u0440\u0436\u0435 [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) + [Backtrader](https://github.com/WISEPLAT/backtrader ) \r\n\r\n- \u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c \u0441 \u0431\u0438\u0440\u0436\u0438 [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 )\r\n\r\n\r\n\r\n\u0414\u043b\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a API \u043c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 [pybit](https://github.com/bybit-exchange/pybit ).\r\n\r\n\r\n\r\n\u2705 Online \u041f\u0440\u0438\u043c\u0435\u0440 \u0434\u043b\u044f [ByBit BACKTEST Trading Strategy for BTC and ETH #2](https://www.kaggle.com/code/olegshpagin/bybit-backtest-trading-strategy-for-btc-and-eth-2)\r\n\r\n\r\n\r\n\u2705 Online \u041f\u0440\u0438\u043c\u0435\u0440 \u0434\u043b\u044f [LIVE Trading Strategy for Ethereum on Bybit](https://www.kaggle.com/code/olegshpagin/live-trading-strategy-for-ethereum-on-bybit)\r\n\r\n\r\n\r\n\r\n\r\n**\u041c\u043e\u0436\u043d\u043e \u0441\u043a\u0430\u0437\u0430\u0442\u044c \u0421\u043f\u0430\u0441\u0438\u0431\u043e:**\r\n\r\n\r\n\r\nUSDT (Tron TRC20): TEHaXZX7KLjAm4eLWdf4VKfsqRUQpv8fTT\r\n\r\n\r\n\r\nBTC (Bitcoin BTC): 1ENhx1HUMJZjGAfYaT1vfsqwKHgVkqwX1D\r\n\r\n\r\n\r\nETH (Ethereum ERC20): 0xfd546640c911ba90d1409a4fbbb4322ae73e7814\r\n\r\n\r\n\r\n\u0438\u043b\u0438 \u043f\u043e [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ) **UID** (\u0431\u0435\u0437 \u043a\u043e\u043c\u0438\u0441\u0441\u0438\u0438) **112927970** \u0447\u0435\u0440\u0435\u0437 \u0431\u0438\u0440\u0436\u0443 \r\n\r\n\r\n\r\n\r\n\r\n## \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430\r\n\r\n1) \u0421\u0430\u043c\u044b\u0439 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431:\r\n\r\n```shell\r\n\r\npip install backtrader_bybit\r\n\r\n```\r\n\r\n\u0438\u043b\u0438\r\n\r\n```shell\r\n\r\ngit clone https://github.com/WISEPLAT/backtrader_bybit\r\n\r\n```\r\n\r\n\u0438\u043b\u0438\r\n\r\n```shell\r\n\r\npip install git+https://github.com/WISEPLAT/backtrader_bybit.git\r\n\r\n```\r\n\r\n\r\n\r\n2) \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 backtrader \u0438\u0437 \u043c\u043e\u0435\u0433\u043e \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f (\u0442\u0430\u043a \u043a\u0430\u043a \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u0442\u044c \u0432 \u043d\u0435\u043c \u0441\u0432\u043e\u0438 \u043a\u043e\u043c\u043c\u0438\u0442\u044b). \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0435\u0433\u043e:\r\n\r\n```shell\r\n\r\npip install git+https://github.com/WISEPLAT/backtrader.git\r\n\r\n```\r\n\r\n-- \u041c\u043e\u0433\u0443 \u043b\u0438 \u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 bybit \u0441 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u043c backtrader?\r\n\r\n\r\n\r\n-- \u0414\u0430, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0439 backtrader, \u0442\u0430\u043a \u043a\u0430\u043a \u0430\u0432\u0442\u043e\u0440 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e backtrader \u043e\u0434\u043e\u0431\u0440\u0438\u043b \u0432\u0441\u0435 \u043c\u043e\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f.\r\n\r\n\r\n\r\n\u0412\u043e\u0442 \u0441\u0441\u044b\u043b\u043a\u0430: [mementum/backtrader#472](https://github.com/mementum/backtrader/pull/472)\r\n\r\n\r\n\r\n3) \u0423 \u043d\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438, \u0432\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0438\u0445 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c:\r\n\r\n```shell\r\n\r\npip install pybit pycryptodome backtrader pandas matplotlib\r\n\r\n```\r\n\r\n\r\n\r\n\u0438\u043b\u0438\r\n\r\n\r\n\r\n```shell\r\n\r\npip install -r requirements.txt\r\n\r\n```\r\n\r\n\r\n\r\n### \u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b\r\n\r\n\u0427\u0442\u043e\u0431\u044b \u0431\u044b\u043b\u043e \u043b\u0435\u0433\u0447\u0435 \u0440\u0430\u0437\u043e\u0431\u0440\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0432\u0441\u0451 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442, \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e \u043f\u0440\u0438\u043c\u0435\u0440\u043e\u0432 \u0432 \u043f\u0430\u043f\u043a\u0430\u0445 **DataExamplesBybit_ru** \u0438 **StrategyExamplesBybit_ru**.\r\n\r\n\r\n\r\n\u041f\u0435\u0440\u0435\u0434 \u0437\u0430\u043f\u0443\u0441\u043a\u043e\u043c \u043f\u0440\u0438\u043c\u0435\u0440\u0430, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0441\u0432\u043e\u0439 API \u043a\u043b\u044e\u0447, Secret \u043a\u043b\u044e\u0447 \u0438 \u0422\u0438\u043f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430, \u0438 \u043f\u0440\u043e\u043f\u0438\u0441\u0430\u0442\u044c \u0438\u0445 \u0432 \u0444\u0430\u0439\u043b\u0435 **ConfigBybit\\Config.py:**\r\n\r\n\r\n\r\n```python\r\n\r\n# content of ConfigBybit\\Config.py \r\n\r\nclass Config:\r\n\r\n    BYBIT_API_KEY = \"YOUR_API_KEY\"\r\n\r\n    BYBIT_API_SECRET = \"YOUR_SECRET_KEY\"\r\n\r\n    BYBIT_ACCOUNT_TYPE = \"UNIFIED\"  # UNIFIED or CONTRACT\r\n\r\n```\r\n\r\n\r\n\r\n####  \u041a\u0430\u043a \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0442\u043e\u043a\u0435\u043d Bybit API:\r\n\r\n1. \u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043e\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442 \u043d\u0430 [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 )\r\n\r\n2. \u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 [\"\u041f\u0440\u043e\u0444\u0438\u043b\u044c\" -> \"\"\"\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 API\"](https://www.bybit.com/app/user/api-management?ref=KXLXXE%230 )\r\n\r\n3. \u0417\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \"\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u041d\u043e\u0432\u044b\u0439 \u041a\u043b\u044e\u0447\" \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \"\u0421\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439\".\r\n\r\n4. \u0412 \u0440\u0430\u0437\u0434\u0435\u043b\u0435 \"\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f API \u043a\u043b\u044e\u0447\u0430\" \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \"\"\u0427\u0442\u0435\u043d\u0438\u0435 \u0438 \u0437\u0430\u043f\u0438\u0441\u044c\" \u0438 \u0432 \"\u0415\u0434\u0438\u043d\u044b\u0439 \u0442\u043e\u0440\u0433\u043e\u0432\u044b\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\"->\"\u0421\u041f\u041e\u0422\" \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \"\u0422\u043e\u0440\u0433\u043e\u0432\u0430\u0442\u044c\".\r\n\r\n5. \u0421\u043a\u043e\u043f\u0438\u0440\u0443\u0439\u0442\u0435 \u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432 \u0444\u0430\u0439\u043b **ConfigBybit\\Config.py** \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 **\"\u041a\u043b\u044e\u0447 API\"** \u0438 **\"\u0421\u0435\u043a\u0440\u0435\u0442\u043d\u044b\u0439 \u043a\u043b\u044e\u0447\"**\r\n\r\n\r\n\r\n#### \u0422\u0435\u043f\u0435\u0440\u044c \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440\u044b\r\n\r\n\r\n\r\n\u0412 \u043f\u0430\u043f\u043a\u0435 **DataExamplesBybit_ru** \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043a\u043e\u0434 \u043f\u0440\u0438\u043c\u0435\u0440\u043e\u0432 \u043f\u043e \u0440\u0430\u0431\u043e\u0442\u0435 \u0441 \u0431\u0438\u0440\u0436\u0435\u0432\u044b\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u0447\u0435\u0440\u0435\u0437 API \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 [Bybit](https://www.bybit.com/invite?ref=KXLXXE%230 ).\r\n\r\n\r\n\r\n* **01 - Symbol.py** - \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0438 \"\u0436\u0438\u0432\u044b\u0445\" \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0434\u043d\u043e\u0433\u043e \u0442\u0438\u043a\u0435\u0440\u0430 \u043f\u043e \u043e\u0434\u043d\u043e\u043c\u0443 \u0442\u0430\u0439\u043c\u0444\u0440\u0435\u0439\u043c\u0443\r\n\r\n* **02 - Symbol data to DF.py** - \u044d\u043a\u0441\u043f\u043e\u0440\u0442 \u0432 csv \u0444\u0430\u0439\u043b \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0434\u043d\u043e\u0433\u043e \u0442\u0438\u043a\u0435\u0440\u0430 \u043f\u043e \u043e\u0434\u043d\u043e\u043c\u0443 \u0442\u0430\u0439\u043c\u0444\u0440\u0435\u0439\u043c\u0443\r\n\r\n* **03 - Symbols.py** - \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u0434\u043b\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0442\u0438\u043a\u0435\u0440\u043e\u0432 \u043f\u043e \u043e\u0434\u043d\u043e\u043c\u0443 \u0442\u0430\u0439\u043c\u0444\u0440\u0435\u0439\u043c\u0443\r\n\r\n* **04 - Resample.py** - \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0434\u043d\u043e\u0433\u043e \u0442\u0438\u043a\u0435\u0440\u0430 \u043f\u043e \u0440\u0430\u0437\u043d\u044b\u043c \u0442\u0430\u0439\u043c\u0444\u0440\u0435\u0439\u043c\u0430\u043c \u043c\u0435\u0442\u043e\u0434\u043e\u043c \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0430\u0446\u0438\u0438 \u043c\u0435\u043d\u044c\u0448\u0435\u0433\u043e \u0442\u0430\u0439\u043c\u0444\u0440\u0435\u0439\u043c\u0430 \u0432 \u0431\u043e\u043b\u044c\u0448\u0438\u0439\r\n\r\n* **05 - Replay.py** - \u0437\u0430\u043f\u0443\u0441\u043a \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043d\u0430 \u043c\u0435\u043d\u044c\u0448\u0435\u043c \u0442\u0430\u0439\u043c\u0444\u0440\u0435\u0439\u043c\u0435, \u0441 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043d\u0430 \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u0438 \u0432\u044b\u0432\u043e\u0434\u043e\u043c \u0433\u0440\u0430\u0444\u0438\u043a\u0430 \u0431\u043e\u043b\u044c\u0448\u0435\u0433\u043e \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\r\n\r\n* **06 - Rollover.py** - \u0437\u0430\u043f\u0443\u0441\u043a \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043d\u0430 \u0441\u043a\u043b\u0435\u0439\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0444\u0430\u0439\u043b\u0430 \u0441 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043d\u043e\u0439 \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u0441 \u0431\u0440\u043e\u043a\u0435\u0440\u0430\r\n\r\n* **08 - Timeframes.py** - \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u0434\u043b\u044f \u043e\u0434\u043d\u043e\u0433\u043e \u0442\u0438\u043a\u0435\u0440\u0430 \u043f\u043e \u0440\u0430\u0437\u043d\u044b\u043c \u0442\u0430\u0439\u043c\u0444\u0440\u0435\u0439\u043c\u0430\u043c\r\n\r\n* **09 - Get Asset Info - through client.py** - \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e\u0431 \u0430\u043a\u0442\u0438\u0432\u0435: \u0431\u0430\u043b\u0430\u043d\u0441, \u0440\u0430\u0437\u043c\u0435\u0440 \u043b\u043e\u0442\u0430, \u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0439 \u0448\u0430\u0433 \u0446\u0435\u043d\u044b, \u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u0438 \u0442.\u0434.\r\n\r\n* **Strategy.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u043e \u0442\u0438\u043a\u0435\u0440\u0443/\u0442\u0438\u043a\u0435\u0440\u0430\u043c OHLCV\r\n\r\n\r\n\r\n\u0412 \u043f\u0430\u043f\u043a\u0435 **StrategyExamplesBybit_ru** \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043a\u043e\u0434 \u043f\u0440\u0438\u043c\u0435\u0440\u043e\u0432 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0439.  \r\n\r\n\r\n\r\n* **01 - Live Trade - Just Buy and Sell.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0432 live \u0440\u0435\u0436\u0438\u043c\u0435 \u0434\u043b\u044f ETH \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 USDT. \r\n\r\n  * \u0412 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u0430\u043a \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u041e\u0440\u0434\u0435\u0440 \u043f\u043e \u0420\u044b\u043d\u043a\u0443 \u0438 \u041b\u0438\u043c\u0438\u0442\u043d\u044b\u0439 \u043e\u0440\u0434\u0435\u0440 \u0438 \u043a\u0430\u043a \u043e\u0442\u043c\u0435\u043d\u044f\u0442\u044c \u043e\u0440\u0434\u0435\u0440. \r\n\r\n  * \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0431\u0438\u0440\u0436\u0443 Bybit \u0438 \u0438\u0445 \u0441\u043d\u044f\u0442\u0438\u0435.\r\n\r\n    * \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u043c\u0435\u0439\u0442\u0435 \u0432 \u0432\u0438\u0434\u0443! \u042d\u0442\u043e live \u0440\u0435\u0436\u0438\u043c - \u0435\u0441\u043b\u0438 \u043d\u0430 \u0440\u044b\u043d\u043a\u0435 \u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0434\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0435\u043d\u044b \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0443 \u043f\u043e\u043d\u0438\u0436\u0435\u043d\u0438\u044f \u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c \u043d\u0430 5% - \u043e\u0440\u0434\u0435\u0440 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d....\r\n\r\n    * \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u043c\u0435\u0439\u0442\u0435 \u0432 \u0432\u0438\u0434\u0443! \u0414\u043b\u044f \u043e\u0440\u0434\u0435\u0440\u0430 \u043f\u043e \u0420\u044b\u043d\u043a\u0443 - \u043e\u043d \u0431\u0443\u0434\u0435\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d....\r\n\r\n    * **\u041d\u0435 \u0437\u0430\u0431\u0443\u0434\u044c\u0442\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u0441\u0442\u0430 \u0441\u043d\u044f\u0442\u044c \u0441 \u0431\u0438\u0440\u0436\u0438 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u044f\u0432\u043a\u0438!**\r\n\r\n\r\n\r\n* **01 - Live Trade.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0432 live \u0440\u0435\u0436\u0438\u043c\u0435 \u0434\u043b\u044f \u0434\u0432\u0443\u0445 \u0442\u0438\u043a\u0435\u0440\u043e\u0432 BTC \u0438 ETH \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 USDT. \r\n\r\n  * \u0412 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b (SMA, RSI) \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u0442\u0438\u043a\u0435\u0440\u0430\u043c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \r\n\r\n  * \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0431\u0438\u0440\u0436\u0443 Bybit \u0438 \u0438\u0445 \u0441\u043d\u044f\u0442\u0438\u0435.\r\n\r\n    * \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u043c\u0435\u0439\u0442\u0435 \u0432 \u0432\u0438\u0434\u0443! \u042d\u0442\u043e live \u0440\u0435\u0436\u0438\u043c - \u0435\u0441\u043b\u0438 \u043d\u0430 \u0440\u044b\u043d\u043a\u0435 \u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0434\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0435\u043d\u044b \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0443 \u043f\u043e\u043d\u0438\u0436\u0435\u043d\u0438\u044f \u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c \u043d\u0430 5% - \u043e\u0440\u0434\u0435\u0440 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d.... \r\n\r\n    * **\u041d\u0435 \u0437\u0430\u0431\u0443\u0434\u044c\u0442\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u0441\u0442\u0430 \u0441\u043d\u044f\u0442\u044c \u0441 \u0431\u0438\u0440\u0436\u0438 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u044f\u0432\u043a\u0438!**\r\n\r\n\r\n\r\n\r\n\r\n* **02 - Live Trade MultiPortfolio.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0432 live \u0440\u0435\u0436\u0438\u043c\u0435 \u0434\u043b\u044f \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u0430 \u0442\u0438\u043a\u0435\u0440\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0442\u044c \u0432 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044e \u0441\u043f\u0438\u0441\u043a\u043e\u043c (BTC, ETH, BNB) \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 USDT. \r\n\r\n  * \u0412 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b (SMA, RSI) \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u0442\u0438\u043a\u0435\u0440\u0430\u043c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \r\n\r\n  * \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0431\u0438\u0440\u0436\u0443 Bybit \u0438 \u0438\u0445 \u0441\u043d\u044f\u0442\u0438\u0435.\r\n\r\n    * \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u043c\u0435\u0439\u0442\u0435 \u0432 \u0432\u0438\u0434\u0443! \u042d\u0442\u043e live \u0440\u0435\u0436\u0438\u043c - \u0435\u0441\u043b\u0438 \u043d\u0430 \u0440\u044b\u043d\u043a\u0435 \u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0434\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0435\u043d\u044b \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0443 \u043f\u043e\u043d\u0438\u0436\u0435\u043d\u0438\u044f \u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c \u043d\u0430 5% - \u043e\u0440\u0434\u0435\u0440 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d....\r\n\r\n    * **\u041d\u0435 \u0437\u0430\u0431\u0443\u0434\u044c\u0442\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u0441\u0442\u0430 \u0441\u043d\u044f\u0442\u044c \u0441 \u0431\u0438\u0440\u0436\u0438 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u044f\u0432\u043a\u0438!**\r\n\r\n\r\n\r\n\r\n\r\n* **03 - Live Trade ETH.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0432 live \u0440\u0435\u0436\u0438\u043c\u0435 \u0434\u043b\u044f \u0434\u0432\u0443\u0445 \u0442\u0438\u043a\u0435\u0440\u043e\u0432 BNB \u0438 XMR \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 ETH. \r\n\r\n  * \u0412 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b (SMA, RSI) \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u0442\u0438\u043a\u0435\u0440\u0430\u043c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \r\n\r\n  * \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0431\u0438\u0440\u0436\u0443 Bybit \u0438 \u0438\u0445 \u0441\u043d\u044f\u0442\u0438\u0435.\r\n\r\n    * \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u043c\u0435\u0439\u0442\u0435 \u0432 \u0432\u0438\u0434\u0443! \u042d\u0442\u043e live \u0440\u0435\u0436\u0438\u043c - \u0435\u0441\u043b\u0438 \u043d\u0430 \u0440\u044b\u043d\u043a\u0435 \u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0434\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0435\u043d\u044b \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0443 \u043f\u043e\u043d\u0438\u0436\u0435\u043d\u0438\u044f \u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c \u043d\u0430 5% - \u043e\u0440\u0434\u0435\u0440 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d....\r\n\r\n    * **\u041d\u0435 \u0437\u0430\u0431\u0443\u0434\u044c\u0442\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u0441\u0442\u0430 \u0441\u043d\u044f\u0442\u044c \u0441 \u0431\u0438\u0440\u0436\u0438 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u044f\u0432\u043a\u0438!**\r\n\r\n\r\n\r\n\r\n\r\n* **04 - Offline Backtest.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0430 \u043d\u0430 \u0438\u0441\u0442\u043e\u0440\u0438\u0438 - \u043d\u0435 live \u0440\u0435\u0436\u0438\u043c - \u0434\u043b\u044f \u0434\u0432\u0443\u0445 \u0442\u0438\u043a\u0435\u0440\u043e\u0432 BTC \u0438 ETH \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 USDT. \r\n\r\n  * \u0412 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b (SMA, RSI) \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u0442\u0438\u043a\u0435\u0440\u0430\u043c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e.\r\n\r\n    * \u041d\u0435 live \u0440\u0435\u0436\u0438\u043c - \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0439 \u0431\u0435\u0437 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0431\u0438\u0440\u0436\u0443!\r\n\r\n\r\n\r\n\r\n\r\n* **05 - Offline Backtest MultiPortfolio.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0430 \u043d\u0430 \u0438\u0441\u0442\u043e\u0440\u0438\u0438 - \u043d\u0435 live \u0440\u0435\u0436\u0438\u043c - \u0434\u043b\u044f \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u0430 \u0442\u0438\u043a\u0435\u0440\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0442\u044c \u0432 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044e \u0441\u043f\u0438\u0441\u043a\u043e\u043c (BTC, ETH, BNB) \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 USDT. \r\n\r\n  * \u0412 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b (SMA, RSI) \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u0442\u0438\u043a\u0435\u0440\u0430\u043c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e.\r\n\r\n    * \u041d\u0435 live \u0440\u0435\u0436\u0438\u043c - \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0439 \u0431\u0435\u0437 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0431\u0438\u0440\u0436\u0443!\r\n\r\n\r\n\r\n\r\n\r\n* **06 - Live Trade Just Buy and Close by Market.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0432 live \u0434\u043b\u044f \u0442\u0438\u043a\u0435\u0440\u0430 ETH \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 USDT.\r\n\r\n  * \u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u043a\u0430\u043a \u043f\u043e\u043a\u0443\u043f\u0430\u0442\u044c \u043f\u043e \u0446\u0435\u043d\u0435 \u0437\u0430\u043a\u0440\u044b\u0442\u0438\u044f \u0438 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e ETH \u0447\u0435\u0440\u0435\u0437 3 \u0431\u0430\u0440\u0430.\r\n\r\n  * \u041f\u0440\u0438\u043c\u0435\u0440 \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u043e\u0440\u0434\u0435\u0440\u043e\u0432 \u043d\u0430 \u0431\u0438\u0440\u0436\u0435 Bybit.\r\n\r\n    * **\u041d\u0435 \u0437\u0430\u0431\u0443\u0434\u044c\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043e\u0440\u0434\u0435\u0440\u0430 \u0441 \u0431\u0438\u0440\u0436\u0438 \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f!**\r\n\r\n\r\n\r\n\r\n\r\n* **07 - Offline Backtest Indicators.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0430 \u043d\u0430 \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u043e\u0432 SMA \u0438 RSI - \u043d\u0435 live \u0440\u0435\u0436\u0438\u043c - \u0434\u043b\u044f \u0434\u0432\u0443\u0445 \u0442\u0438\u043a\u0435\u0440\u043e\u0432 BTC \u0438 ETH \u043d\u0430 \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0442\u0438\u043a\u0435\u0440\u0435 USDT. \r\n\r\n  * \u0412 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b (SMA, RSI) \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u0442\u0438\u043a\u0435\u0440\u0430\u043c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e.\r\n\r\n    * \u0433\u0435\u043d\u0435\u0440\u0438\u0442 177% \u0434\u043e\u0445\u043e\u0434\u0430 \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432\u0438\u0434\u0435\u043e )) \r\n\r\n    * \u041d\u0435 live \u0440\u0435\u0436\u0438\u043c - \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0439 \u0431\u0435\u0437 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0437\u0430\u044f\u0432\u043e\u043a \u043d\u0430 \u0431\u0438\u0440\u0436\u0443!\r\n\r\n\r\n\r\n\r\n\r\n* **08 - Offline Backtest Margin Trade with Leverage 50x - Linear Trade.py** - \u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u043e\u0440\u0433\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0438 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043c\u0430\u0440\u0436\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043b\u0435\u0447\u0430 50x \u0434\u043b\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0431\u044d\u043a\u0442\u0435\u0441\u0442\u0430 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u043e\u0432 SMA - \u043d\u0435 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 - \u0434\u043b\u044f \u0434\u0432\u0443\u0445 \u0442\u0438\u043a\u0435\u0440\u043e\u0432 BTC \u0438 ETH \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0442\u0438\u043a\u0435\u0440\u0430 USDT.\r\n\r\n  * \u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b SMA \u043a \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u0442\u0438\u043a\u0435\u0440\u0430\u043c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e.\r\n\r\n    * \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0443\u0435\u0442 792% \u0434\u043e\u0445\u043e\u0434\u0430 \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u0444\u0430\u0439\u043b\u0430\r\n\r\n    * \u041d\u0435 live \u0440\u0435\u0436\u0438\u043c - \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0439 \u0431\u0435\u0437 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u043e\u0440\u0434\u0435\u0440\u043e\u0432 \u043d\u0430 \u0431\u0438\u0440\u0436\u0443!!\r\n\r\n  * \u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u044f \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u043a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u0430\u0440\u0436\u0438\u043d\u0430\u043b\u044c\u043d\u0443\u044e \u0442\u043e\u0440\u0433\u043e\u0432\u043b\u044e \u0441 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u043c \u043f\u043b\u0435\u0447\u043e\u043c 50x \u0434\u043b\u044f \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u0430 \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u044b\u043d\u043e\u0447\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u043b\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442.\r\n\r\n```commandline\r\n\r\n$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\r\n\r\nWas money: 2000.00\r\n\r\nEnding Portfolio Value: 17853.46\r\n\r\nRemaining available funds: 4887.38\r\n\r\nAssets in the amount of: 12966.08\r\n\r\n\r\n\r\n2000.00 ==> 17853.46 ==> +792.67%\r\n\r\n\r\n\r\nSQN:  AutoOrderedDict([('sqn', 1.0031776139642996), ('trades', 4)])\r\n\r\nVWR:  OrderedDict([('vwr', 25.613023915870777)])\r\n\r\nTDD:  OrderedDict([('maxdrawdown', 65.77087178559279), ('maxdrawdownperiod', 304)])\r\n\r\nDD:  AutoOrderedDict([('len', 6), ('drawdown', 20.46618403019286), ('moneydown', 229.70872494394746), ('max', AutoOrderedDict([('len', 304), ('drawdown', 65.77087178559279), ('moneydown', 295.8359186842)]))])\r\n\r\nAR:  OrderedDict([(2021, 0.0), (2022, -0.42822236821405035), (2023, 4.540830244681184), (2024, 1.8176719585784271)])\r\n\r\nProfitability:  OrderedDict([('rtot', 2.1890502317806253), ('ravg', 0.0022178827069712515), ('rnorm', 0.7487590850582526), ('rnorm100', 74.87590850582527)])\r\n\r\n$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\r\n\r\n```\r\n\r\n\r\n\r\n## \u0421\u043f\u0430\u0441\u0438\u0431\u043e\r\n\r\n- backtrader: \u043e\u0447\u0435\u043d\u044c \u043f\u0440\u043e\u0441\u0442\u0430\u044f \u0438 \u043a\u043b\u0430\u0441\u0441\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430!\r\n\r\n- [pybit](https://github.com/bybit-exchange/pybit ): \u0414\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043e\u0431\u043e\u043b\u043e\u0447\u043a\u0438 Bybit API, \u0441\u043e\u043a\u0440\u0430\u0449\u0430\u044e\u0449\u0435\u0439 \u0431\u043e\u043b\u044c\u0448\u0443\u044e \u0447\u0430\u0441\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u044b.\r\n\r\n\r\n\r\n## \u0412\u0430\u0436\u043d\u043e\r\n\r\n\u0418\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043e\u043a, \u0434\u043e\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0438 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u0440\u043e\u043c \u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u043c!\r\n\r\n\r\n\r\n**\u041f\u0443\u0448\u044c\u0442\u0435 \u0432\u0430\u0448\u0438 \u043a\u043e\u043c\u043c\u0438\u0442\u044b!** \r\n\r\n\r\n\r\n# \u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\r\n\r\n\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 backtrader_bybit \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0430\u044f \u0434\u0435\u043b\u0430\u0442\u044c \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044e Backtrader \u0438 Bybit API - \u044d\u0442\u043e **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430** \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u0430\u044f \u0438\u0441\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0440\u0430\u0431\u043e\u0442\u044b.\r\n\r\n\u041f\u0440\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b** \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043e\u0431\u044f\u0437\u0430\u043d \u0441\u043e\u0431\u043b\u044e\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e \u0437\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u0441\u0432\u043e\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u044b.\r\n\r\n\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b** \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0443 \u00ab\u041a\u0430\u043a \u0435\u0441\u0442\u044c\u00bb (\u00abAS IS\u00bb). \u041d\u0438\u043a\u0430\u043a\u0438\u0445 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0439, \u043a\u0430\u043a \u0443\u0441\u0442\u043d\u044b\u0445, \u0442\u0430\u043a \u0438 \u043f\u0438\u0441\u044c\u043c\u0435\u043d\u043d\u044b\u0445 \u043d\u0435 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0438 \u043d\u0435 \u043f\u0440\u0435\u0434\u0443\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u0442\u0441\u044f.\r\n\r\n\u0410\u0432\u0442\u043e\u0440 \u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043d\u0435 \u0434\u0430\u0435\u0442 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0438, \u0447\u0442\u043e \u0432\u0441\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b** \u0431\u044b\u043b\u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0430\u0432\u0442\u043e\u0440 \u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043d\u0435 \u043d\u0435\u0441\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u043e\u0439 \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\r\n\r\n\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b**, \u0432\u043a\u043b\u044e\u0447\u0430\u044f, \u043d\u043e, \u043d\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u044f\u0441\u044c \u043b\u044e\u0431\u044b\u043c \u0443\u0449\u0435\u0440\u0431\u043e\u043c \u043e\u0431\u043e\u0440\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u044e, \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430\u043c, \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c, \r\n\r\n\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u043c\u0443 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044e \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432\u044b\u0437\u0432\u0430\u043d\u043d\u044b\u043c \u0438\u043b\u0438 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u043c \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b**, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0437\u0430 \u043b\u044e\u0431\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u043f\u043e\u0442\u0435\u0440\u0438,\r\n\r\n\u043f\u043e\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b**.\r\n\r\n\u041d\u0438\u043a\u0442\u043e \u043d\u0435 \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u0435\u043d \u0437\u0430 \u043f\u043e\u0442\u0435\u0440\u044e \u0434\u0430\u043d\u043d\u044b\u0445, \u0443\u0431\u044b\u0442\u043a\u0438, \u0443\u0449\u0435\u0440\u0431, \u0432\u043a\u043b\u044e\u0447\u0430\u044e \u0441\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0439 \u0438\u043b\u0438 \u043a\u043e\u0441\u0432\u0435\u043d\u043d\u044b\u0439, \u0443\u043f\u0443\u0449\u0435\u043d\u043d\u0443\u044e \u0432\u044b\u0433\u043e\u0434\u0443, \u043f\u043e\u0442\u0435\u0440\u044e \u0434\u043e\u0445\u043e\u0434\u043e\u0432 \u0438\u043b\u0438 \u043b\u044e\u0431\u044b\u0435 \u0434\u0440\u0443\u0433\u0438\u0435 \u043f\u043e\u0442\u0435\u0440\u0438,\r\n\r\n\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c **\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b**.\r\n\r\n\r\n\r\n**\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430** \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0435\u0442\u0441\u044f \u043d\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 [MIT](https://choosealicense.com/licenses/mit).\r\n\r\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Bybit API integration with Backtrader",
    "version": "2.0.8",
    "project_urls": {
        "Documentation": "https://github.com/WISEPLAT/backtrader_bybit/blob/master/README.md",
        "Homepage": "https://github.com/WISEPLAT/backtrader_bybit"
    },
    "split_keywords": [
        "trading",
        " development"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9099df98e90721d45d7cd0fe9327e8a7275ac389f039a29bded3c77e8a58e6ac",
                "md5": "1046dd1ff16d9bec1828dd1e9d7f9b22",
                "sha256": "9f3522e8b88d5a5796d7c6bc1c5dbb8751fcd68b0d65ca7cb8333f2460f1d23e"
            },
            "downloads": -1,
            "filename": "backtrader_bybit-2.0.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1046dd1ff16d9bec1828dd1e9d7f9b22",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 18506,
            "upload_time": "2024-04-06T04:53:10",
            "upload_time_iso_8601": "2024-04-06T04:53:10.411864Z",
            "url": "https://files.pythonhosted.org/packages/90/99/df98e90721d45d7cd0fe9327e8a7275ac389f039a29bded3c77e8a58e6ac/backtrader_bybit-2.0.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1961b15e35fd9e90e4b7e20080b152f205f37d126b97c9ac87aaed64f2affbe8",
                "md5": "c343627cc44c4df929db8611fe5b5bd2",
                "sha256": "784e3b0191d5556eec9a52593ca3add5cfddcd24e1236cfcfbf5aba2c0f8e18d"
            },
            "downloads": -1,
            "filename": "backtrader_bybit-2.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "c343627cc44c4df929db8611fe5b5bd2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 26310,
            "upload_time": "2024-04-06T04:53:12",
            "upload_time_iso_8601": "2024-04-06T04:53:12.471516Z",
            "url": "https://files.pythonhosted.org/packages/19/61/b15e35fd9e90e4b7e20080b152f205f37d126b97c9ac87aaed64f2affbe8/backtrader_bybit-2.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-06 04:53:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "WISEPLAT",
    "github_project": "backtrader_bybit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "backtrader-bybit"
}
        
Elapsed time: 0.22866s