Skip to main content

A Python library with a command line interface for a trailing stop loss and smart entry on the Binance exchange.

Project description

Get a UNICORN Binance Suite License

Github GitHub Release GitHub Downloads Anaconda Release Anaconda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status codecov CodeQL Unit Tests Build and Publish GH+PyPi Build and Publish Anaconda Read the Docs Read How To`s Telegram Gitter

LUCIT-UBTSL-Banner

UNICORN Binance Trailing Stop Loss

Description | Smart Entry | Installation | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Disclaimer | Commercial Support

A Python library with a command line interface for a trailing stop loss and smart entry on the Binance exchange.

Please read carefully all provided documentation, our disclaimer and look in the issues about known problems before using this tool - you use it at your own risk!

If you put this engine on a market, you should stop trading manually on this market yourself!

Part of 'UNICORN Binance Suite'.

Get a UNICORN Binance Suite License

To run modules of the UNICORN Binance Suite you need a valid license!

How to start the trailing stop loss engine:

from unicorn_binance_trailing_stop_loss.manager import BinanceTrailingStopLossManager


def callback_error(msg):
    print(f"STOP LOSS ERROR - ENGINE IS SHUTTING DOWN! - {msg}")
    ubtsl.stop_manager()

def callback_finished(msg):
    print(f"STOP LOSS FINISHED - ENGINE IS SHUTTING DOWN! - {msg}")
    ubtsl.stop_manager()
    
def callback_partially_filled(msg):
    print(f"STOP LOSS PARTIALLY_FILLED - ENGINE IS STILL RUNNING! - {msg}")
    
ubtsl = BinanceTrailingStopLossManager(callback_error=callback_error,
                                       callback_finished=callback_finished,
                                       callback_partially_filled=callback_partially_filled,
                                       binance_public_key="aaa",
                                       binance_private_key="bbb",
                                       borrow_threshold="100%",
                                       exchange="binance.com",
                                       keep_threshold="20%",
                                       market="BTCUSDT",
                                       print_notifications=True,
                                       reset_stop_loss_price=True,
                                       send_to_email_address="blah@example.com",
                                       send_from_email_address="blub@example.com",
                                       send_from_email_password="pass",
                                       send_from_email_server="mail.example.com",
                                       send_from_email_port=25,
                                       stop_loss_limit="1.5%",
                                       stop_loss_order_type="LIMIT",
                                       stop_loss_price=88,
                                       stop_loss_start_limit="0.5%",
                                       telegram_bot_token="telegram_bot_token",
                                       telegram_send_to="telegram_send_to")

Stop the engine:

ubtsl.stop_manager()

Discover more possibilities.

Start the engine on the command line (Windows, Linux and Mac):

$ ubtsl --profile BTCUSDT_SELL --stoplosslimit 0.5%

Read about the CLI usage.

Description

The Python package UNICORN Binance Trailing Stop Loss provides a reuseable library and CLI interface.

After starting the engine, a stop/loss order is placed on Binance and trailed until it is completely fulfilled. If desired, a notification can be sent via email and Telegram afterwards. Then it calls the function passed with the callback_finished parameter or on error it calls the function passed to callback_error.

Partially filled orders are currently not handled by the engine. If you want to react individually to this event, you can use the function provided to callback_partially_filled.

In addition, there is a smart entry option called jump-in-and-trail. This offers the possibility to buy spot, future and margin assets with a limit or market order and then to trail a stop/loss order until sold.

What are the benefits of the UNICORN Binance Trailing Stop Loss?

  • Using websockets for push notifications about price updates and order status updates. (Fast data transfer and low used API weight!)
  • Smart entry
  • Supported exchanges:
Exchange Exchange string trail jump-in-and-trail
Binance binance.com yes no
Binance Testnet binance.com-testnet yes no
Binance Futures binance.com-futures yes yes
Binance Isolated Margin binance.com-isolated_margin yes yes (experimental)
Binance Margin binance.com-margin yes yes
  • All parameters that expect numbers can be configured with fixed numerical values as well as with percentage values.
  • Integrated notification system (e-Mail and Telegram).
  • Test "notification", "binance-connectivity" and "streams" without starting the engine.
  • Powered by UNICORN Binance REST API and UNICORN Binance WebSocket API.
  • Well tested on Linux, Mac and Windows.

If you like the project, please star it on GitHub!

Smart entry

This function is still in an experimental phase and only available for Isolated Margin.

Do a smart entry by using engine = 'jump-in-and-trail' and providing borrow_threshold.

By activating the jump-in-and-trail engine, the engine first buys the predefined asset amount and then trails them automatically.

Installation and Upgrade

The module requires Python 3.7 or above, as it depends on Pythons latest asyncio features for asynchronous/concurrent processing.

For the PyPy interpreter we offer packages only from Python version 3.9 and higher.

Anaconda packages are available from Python version 3.8 and higher.

The current dependencies are listed here.

If you run into errors during the installation take a look here.

A Cython binary, PyPy or source code based CPython wheel of the latest version with pip from PyPI

Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:

  • Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.

  • PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.

Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.

Installation

pip install unicorn-binance-trailing-stop-loss

Update

pip install unicorn-binance-trailing-stop-loss --upgrade

A Conda Package of the latest version with conda from Anaconda

The unicorn-binance-trailing-stop-loss package is also available as a Cython version for the linux-64, osx-64 and win-64 architectures with Conda through the lucit channel.

For optimal compatibility and performance, it is recommended to source the necessary dependencies from the conda-forge channel.

Installation

conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit unicorn-binance-trailing-stop-loss

Update

conda update -c lucit unicorn-binance-trailing-stop-loss

From source of the latest release with PIP from GitHub

Linux, macOS, ...

Run in bash:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade

Windows

Use the below command with the version (such as 1.1.0) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/1.1.0.tar.gz --upgrade

From the latest source (dev-stage) with PIP from GitHub

This is not a release version and can not be considered to be stable!

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/tarball/master --upgrade

Conda environment, Virtualenv or plain Python

Download the latest release or the current master branch and use:

  • ./environment.yml
  • ./pyproject.toml
  • ./requirements.txt
  • ./setup.py

Change Log

https://unicorn-binance-trailing-stop-loss.docs.lucit.tech/CHANGELOG.html

Documentation

Examples

Howto

Project Homepage

https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss

Wiki

https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/wiki

Social

Receive Notifications

To receive notifications on available updates you can watch the repository on GitHub, write your own script with using is_update_available() or you use the monitoring API service.

Follow us on LinkedIn, X or Facebook!

To receive news (like inspection windows/maintenance) about the Binance API`s subscribe to their telegram groups:

How to report Bugs or suggest Improvements?

List of planned features - click thumbs-up if you need one of them or suggest a new feature!

Before you report a bug, try the latest release. If the issue still exists, provide the error trace, OS and Python version and explain how to reproduce the error. A demo script is appreciated.

If you dont find an issue related to your topic, please open a new issue!

Report a security bug!

Contributing

UNICORN Binance Trailing Stop Loss is an open source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To contribute follow this guide.

Contributors

Contributors

We love open source!

Disclaimer

This project is for informational purposes only. You should not construe this information or any other material as legal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, endorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in this or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction.

If you intend to use real money, use it at your own risk!

Under no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities of any kind, including but not limited to direct or indirect damages for loss of profits.

Commercial Support

Get professional and fast support

Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unicorn-binance-trailing-stop-loss-1.1.0.tar.gz (389.2 kB view details)

Uploaded Source

Built Distributions

unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-win_amd64.whl (255.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-win32.whl (229.3 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl (306.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-win_amd64.whl (255.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-win32.whl (231.8 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (313.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-win_amd64.whl (254.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-win32.whl (232.4 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (314.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-win_amd64.whl (254.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-win32.whl (232.5 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (314.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-win_amd64.whl (260.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-win32.whl (237.7 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (307.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-win_amd64.whl (244.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-win32.whl (223.2 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (297.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file unicorn-binance-trailing-stop-loss-1.1.0.tar.gz.

File metadata

File hashes

Hashes for unicorn-binance-trailing-stop-loss-1.1.0.tar.gz
Algorithm Hash digest
SHA256 04dbf58d6c5cec74ade3914dc348e6e8d75926955568f11d928a31c7ab10331c
MD5 cd00c39090c8a62c304948f06456aba9
BLAKE2b-256 e2c235392822244cb3f6db480d500a095b2742d8fa82129431d2efc257cbf5af

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 74f09c8704ccfbd6c760b435da1159e3ea57663d39e02039c12a833409fc80f2
MD5 192640891d4d87e9f4540cdd8b5e71b6
BLAKE2b-256 9d9f29c8c072571bffe9f4bf98711665f86a7536a81c5537835e773a31c7b3a8

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c34259b1aed31af939492f2e919f4f9e66ed8ccf918b95cf567192bf00acea5e
MD5 630dc7b6068c49d96c5744480201c9bd
BLAKE2b-256 8639603e0831aa77e129548885cb6d9aa01d1956581c0d3c49f216de6953109b

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6def253ffd757ba049100bffbede771b9584654f95fbce3bb3d09f3b60b2cd96
MD5 5671c75f326c9ce4f1d1adfe102e8d76
BLAKE2b-256 835dcc240329bace7a7e3cc1f0897de1f52bcba58b3122b4f585c1fdfe393854

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 566934523da234da93388c0071d6c2f8d17dd5af738fb94a19d9d4f73f961c6a
MD5 dd770cd7dc1300ade1fcebac9ac596df
BLAKE2b-256 23c2066f61fe421a656a85563ef7b1ed8e190a69a1163ad74647b09923f2e972

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 78b921b1c393f75fb43498aaeb6df65aa1eef28e4f599f6c9c3131c2b032750b
MD5 3f54c34a1bae105739143768228c51fc
BLAKE2b-256 7acdcc1645a476be80e3c8eaeaa83e7fcb66768064044d8c79077575d9d3b814

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a582dae611e613511a2ee40abeba959a07b61b108a051b14e700960f8f25323f
MD5 1c6e681106c1649a012fe98e3b219fa4
BLAKE2b-256 c38fc4f7cdb860434249d434b6256e1baea3fb9cd3340ad21d7eb1d424e60c36

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 543f205249293c1b340bcdea0ef984279567d6eea267e792badad8261a1dd062
MD5 65b136a73b9e0959af994deddaac77d2
BLAKE2b-256 b75b535aaf26422686571753941271436dc0230d0637960ea873f799a65a9141

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f627595f7b7cd2d36a2fed2178425886ec6af2b4f343ea1d7c41d4717eaec46
MD5 00500ccadc5f9998c5f5e44d0b96427a
BLAKE2b-256 172bc1f257e8008c1f9be81082eb5e02a517b79e64974796b7fd52bb66aee874

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 73c8c9537ca3162a265d6c6e7448066404cf8487d8651cf2d664bfefefc15b20
MD5 006436cdbc6646d47b47bf048065d4f8
BLAKE2b-256 3780c62ff3640060d4658599021284d0f1941b67504aae812c2b1ef279cf4b5f

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf678f9b8a8e072d1c988664289ce61d06335591ad9ad32d7ad9a7e4180e5966
MD5 c63f19cfe5cbc7eb16a3edef810c86de
BLAKE2b-256 736d23be3d995e85e3cf84bd04c220e4af3189c5deceab2729dc406ae327f29d

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee6f23e7c1898a51d250fcfed4f0bbbdf6eabb9b591e3253202ee7de06317e8d
MD5 8950f92cabcecdb23833ea5d3cfdf524
BLAKE2b-256 0c1e1b37b2e9dc54180435a30a9006497bfc4be8dff87a0227f4641ab77ea9aa

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12cffd8ae1221e78fed605588cf50de0e244c4f3580140223b129be20a6b7510
MD5 9c272e3c2633b0cffc6dc9920a7c4a25
BLAKE2b-256 4ba13ce3c1c67be5a5725bcce5ac6c33b6992880a3b4ccf1da7eaa90299cb4a9

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b3b457add3a58821c2d47c959629e7e30e256620d5613b04ab41eed05ecbd932
MD5 26df8465cfbc05fb8c9ddc570b794673
BLAKE2b-256 5ea6dd0d821e19dc6b7ac2e323eaf35a76d95ce6593da0ee53ca2d0d8a6653b1

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 53206fb472264e61c545e68ceb3ec0c311e5a34c68c25e13cac19e00571ad45c
MD5 b38e1cb54cec1882d2bce4e9a2f8953f
BLAKE2b-256 5198f2c66cf99e05e4d8c6a610ff212851f0964c8076e42a3b85703f28f33407

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ae07de6aeab2c9495a0ba2286d304866c8dec3b3ec55f04baf479c5f3c8cadde
MD5 2f4e0560b26addbc50bea6c9adb0fe92
BLAKE2b-256 fbf20b9350cceeada3ce5dbc56c1e81bd91cc20192f7f84256755a2ae4c5383a

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 262a9535a8caf818e7b65776839786135fd471d7d8d2735e569a1d0c126c8e40
MD5 3b46cbc96367a3d003b25c6d809f40b9
BLAKE2b-256 20f09011a675891c3e6f3f7888ba54f9c558c43089d77dd261b0b0dd1d509c41

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dff3529b6fbe0a9f5a76d47e47cdaa9bbb6dcd826c2a32436f71bafd79aaab4f
MD5 f1d1a6cc9c7e0c91df402363c4e6b683
BLAKE2b-256 f321bd3ddf5bf5ce506722689906157df6a97d5800a4a34b021a6ab6de4461c2

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2f1d55d7901ee88caeb450bf223edb375fa443df2913b0ef199d3f53c89f7f0
MD5 2aca3bca2866aa10d3d88eeeb0a961b3
BLAKE2b-256 dea07b6c80db43d6ff6f1ffb9c506e0b2248f1cf2adf0bb9f7faf1c527b78526

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5f08320f8577361ca9c682d15d5ea00a93060f692a4519917c17da10954db4b
MD5 855e25bd97abd2e9a2074d6563294756
BLAKE2b-256 c67d4272252af0f8c8342b9adecacac0111f27675325c85eb0edcbbd6524a633

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb1b50187744f37a9fae253cd3b4bdcada5d8302b99306710bd04a1631675f6a
MD5 a30d2c9cfef5840c8331ffbfded937d5
BLAKE2b-256 1e7cb20ca93cd304a5c2bc22ff34fe08b4ffc8d49e32845205a94f6b7a4052f6

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b76076c0555e1275b24ae2189ef751809f9e92ffa73ab3ddcf2cdef62f1cc82d
MD5 ca2001d5b01e6eae1c253e57f57fa59b
BLAKE2b-256 6241f5a010376f729675a886dd8b7706292f3cb3ef4cea4fb790e6c4fda75ff3

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8241b60e64b2f8e24ce3cb72c334bfae8c1c22cbe653487c26d5bba7b06aaeae
MD5 9e517b7ba040050ed1b1374448046adc
BLAKE2b-256 08b53a268d409a0ebca31b971473fa1d92e36d9b95f9555f954a3c047056580f

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d3a8466f4050cb5b200746912ca933859b6a5942984f93ac7b093d595e02fd8
MD5 afb9852fd9bcc459f1d48664045675b3
BLAKE2b-256 ff4408d6c081b313802df79e1f437565ed328b7a00d979ea38f083cc8b2cc8b9

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d3c598502fb48398c94987d30c4b0b478b843f513c18bf08ee58082f9663e782
MD5 cb77ffe4f5e4c01b5066fa9ab1492978
BLAKE2b-256 e07bdb891b43b2bc7fcc1f457d1ae1da136f4e6b50a74cc2ef6863a21736dc11

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6df27805a386985cad7239f544df38c3a26bff4f79036d1f3080047d195f4b8f
MD5 d91c4e5279ed884251753c61c2a6377d
BLAKE2b-256 4b574b5f9e81b8ef6a41d2b87dedf01953be4774b3fe6f67ed25256caf986d25

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dde09de37404d0f6b8fe65757b45d21e5270243d46a635c50b9a6c116daa7b0e
MD5 bcadecef9af2f5b6eccc541cb47b5f73
BLAKE2b-256 c964d5aaaf9fb94733d891a3148aeb0a7aa71640da863bceaad930c29fc5305c

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 485c2847e0e02cf5347207670ae622c00bfa26ebc3f8ceea39bffaab49730ead
MD5 f0a54474f5e94cc7865d4d11a77fad03
BLAKE2b-256 42c7414af46ca41374ac175b8d7723c88b24f74c0c3d52a5a81d5cb420241ac4

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e04f60c27f40597f6475aa40495dc3cfcec4956317a95af66aa5f4dad361f67
MD5 a9f8d86aa93bc8f27b3e5d7fc8a94e6e
BLAKE2b-256 27aa0b4c477c3c73bba5b3cb68aece947d0ad1d219d5717df009b43b8fe6081f

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 229fa89cc64f17ac583f30daa41a1796e9dce501262335473b2ab18475949809
MD5 0ad2be0867124ddbf0d6e11fc415a1e4
BLAKE2b-256 a7fe1e4f0c5386a520585e5b9f2044d674bacf0e52a1257721560698b5623d7d

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e1f0e8afc117316301f310faa3f58b93c5af62e1cc3c00a3a38e2f112258b6d4
MD5 f4286bc370676569e7c77940ac8ed35c
BLAKE2b-256 af4326c1e01b85b2a9a63156defe86baf6f9542aaf6c4cddb6bcafd150be0306

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1095044ac0ca0ab08144f175be1953fae34391e3202024a91448f2a2e29962d3
MD5 86bebbc715ab1e6159828c23ff7fb4ce
BLAKE2b-256 41882f21997f4360076089d0b50a6aa0d71da52645dadee1612f2bf50039bc01

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c57cfcb934c056e45cc91ce7c69eb05954788b6cbaf70e9d0173dc924c59b873
MD5 a0b8968fc89900e260cf57648b6a53e9
BLAKE2b-256 eab5c2ec03d9d48f2fcbc976ba6adb312c8ca473a512c68314508f03aa03149f

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e50572777536d27f15e2d64cb70da2b3f0d06503d6aeb92c23f26e9f304df73
MD5 c23b981dd25e5f63aa37ca9c0448bbef
BLAKE2b-256 7c53d58b21e594853ea29e1176fd5becf8384f0abd78b2df7c212dc887d01d6e

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f85a28dadcdc9d5ae77a3e35e7448e63dd987b8ff59746312b1fb121eb0bfaa
MD5 0e3f1dc102a988a6d0347dd538d188a0
BLAKE2b-256 379e517398a3b66f3767fd0d6c82fd25cf52deb6f52e8eea4559464546448135

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 239f03cb2929ec4cd0a3eaf6a17f91e9679a349d9b03148f03cd4eccf6bfe3db
MD5 3bab84ab7b7786a56e6d185e8fd49070
BLAKE2b-256 1eeb97c01b151dc5129bbbeb92ac524403ff3187ab4887a0292290083801499f

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d20df4b17d74f1e258dc9f2b985ae3ab96ae2815d235385fe193c0a251fe4e2a
MD5 6de0422d3e5fa9d7f5e01a9289b223f4
BLAKE2b-256 4bcd77110aec232fc5f0237ba6bfe43afd467a87ced50ea7f5776ba9b50c5b98

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d0761a07ef92b2956c215ab55130b8cb6361715e5c9f89c9caa46b1cb1b4c2bd
MD5 aaa8ee65a0d744349eb2c1bccfb12f70
BLAKE2b-256 f8f2ef098a410697146ec3223d3672663ac566079bb9ee34a461f722cabef5af

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ef182cb4f9e2194ed65f9a43473dd770e3fa4eedbf71bdb806eae2bb06fe7d9c
MD5 f24989fc6c65b044de9d34dcd453b0ef
BLAKE2b-256 b7290159503d09053dfe82a92939f8df223c77f69f1a2f5f1db168049869eea9

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31e6078723a26dfadf334cb62469781617a9c4db54c2843c1f9d321ee6c217d5
MD5 3d8b46a5579e4b70a6c930bd90dcdaf4
BLAKE2b-256 b8c9c91c7d692cdabc15405792a00632f7fa89e4b6f65f88725a02264e02b294

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 343cb7d62e73ea4287940176aef14b3a4a16aafc8f25d67fb9c6c8590ae50306
MD5 512a74b5e35e146707a1af20992f5a19
BLAKE2b-256 fdbc7f90698704c222ac43c3055f76581f1da17bd7b4dda9bdf6cdffc197e6ab

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae79e425749a166678a2a3086310d5c2fe096778a2447839c35463788ca1e121
MD5 d0c4f12a9c842bc505c1cfe1e7f23d1d
BLAKE2b-256 4700f0d3391180d63c7068effd57382ee18968eca1dc0b8383af0f8e3a65eb33

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fb8c6723fc70416c0d8658d0cf993fc0db05b27fbe144ecadcb5a64b7ca0f6a2
MD5 40f5a25ae1822b2e466b41c40701477b
BLAKE2b-256 dfddc137e4b8108bf1adb4ce387e3f32ba242bd3e9927de544d6c2aa9ad544aa

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c9ff94bbeff2469709b16372e7fb199e2240f073dfe6b1a53c88650d8193bd5a
MD5 86c8d99aa1befb7bcf00fcef9f56fe94
BLAKE2b-256 042671e879f72984ad89e35d9660af4023c02d545d05907df8c9b2dc85e8ff60

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 87ea8d9b616817f769787e14e6b81e115df42376a5f4a2337768b015e9330660
MD5 56145c4f1c3c3c9635d73a9ec02ae109
BLAKE2b-256 7c785362bfb8ece5fe61748553fa54552e6738fca87c3c5a1875d632f3312c1c

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bfef19d5b93b37d681b75268d988628f68ffd06d30fcad9f1ad32a7ed13f4927
MD5 8e5910b7bef58eec6b9a40fa4d5bdc94
BLAKE2b-256 2df9e15f34e912740871b6301dfc3d338722a5f462b3cdd9612b5403f0071a32

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89c84678f91a3559b791607ed21f187bcbc91b8a3ace1a34adf38b8e41044dbb
MD5 0e9dc462266bf6b7370ab0292f2943b3
BLAKE2b-256 91a8d83a9c190fc6e2d9465c94b80e913c26ab80af1093c526400e8efac85f2c

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 836c410c54cfd88f0cbcf6dc70f42e95bf01644796f11807de51a8866df6c0c5
MD5 a9677e87316e904526d8f2958e6b4375
BLAKE2b-256 bce3438daa0b050f75859b75e7ebf69e1930ae6997cdaa62dcd0dfd20663362f

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d742aee7c97fa327b7f9181a672007a4c9a380f96ccbd891ca5b8114d8ee5623
MD5 fc2f692defc15192d0dbbf965ea86cfb
BLAKE2b-256 828ae74b50fedb56d643d768fe5dfe6b353e44d224bb6b0ca74cdeefdb97f808

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3a8ff70f99aad7f31926128fc21a68d8fee6e14902d3352e4195efb534f2842f
MD5 0131285bf6ec0189876b8671f4a55ea2
BLAKE2b-256 628b6fa84882f89f298785d8484482f98457c76d27b5a89535fa79bb85c8c60e

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c7f9d3626a35cfe36df5d59d960c3726b5148eb0dac8d52a31062c2a7f54fd6b
MD5 b858a4515e647b478dc4f84635d3b6b7
BLAKE2b-256 9f29b725a93e08f7777ae56b172128ce1270a68a3c46b93058e2bc10d6de80de

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf1234aa1f86a9662534c98ff5956728d5c0dd43cba6c0d876e13b47bc47951a
MD5 0391475dae257118404ca863051702fa
BLAKE2b-256 02ed114db1bfa6572c2766ffc7360834d21ffc3d8e61d140ffbd123530a14cd2

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 06cd961d3bdd6690bfd2e3688ba812da148d49cd8ae2d8159125d4e73e31dd76
MD5 49e4f68c15f60572e832575bef21a510
BLAKE2b-256 d5617c038e2f35afb097a3de25d89031248b82094b8fa61744487805e1a9de19

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56f3ea9ae18d38a4af46905546b69ad593f5958d5291d7998f4bb2ea931a5ba3
MD5 0cb059bbd1fb4feee49b90cda5ed2e67
BLAKE2b-256 da2deb53ced6b77ab67717d0c3d3effb1779dc76554a14c1a78f46cee7c192a7

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 600fb325f401d21906d8935d61b4dc567a799b730e33b92e3b345f94628fa859
MD5 4aebdb39ac33c1e954d33389630bc6d3
BLAKE2b-256 aae99287d6975f7a2078430223df66569d2d98a56d844c1eae65f892e5933483

See more details on using hashes here.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 636c816bc1b3254dbb14979d2a47d8ded78498c6e1a7670047881f97c5eb9b43
MD5 b52e1a8689214331c53de3c72b3fee5e
BLAKE2b-256 5cf9c3adf5ac218840a267c84dd9771dddb7d3417e8f9eb40660383547cad69e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page