A Python library with a command line interface for a trailing stop loss and smart entry on the Binance exchange.
Project description
UNICORN Binance Trailing Stop Loss
Description | Smart Entry | Installation | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Leave a review | 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()
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 |
||
Binance Testnet | binance.com-testnet |
||
Binance Futures | binance.com-futures |
||
Binance Isolated Margin | binance.com-isolated_margin |
(experimental) | |
Binance Margin | binance.com-margin |
- 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 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 available 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.0.0) you determined here:
pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/1.0.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
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:
- https://t.me/binance_api_announcements
- https://t.me/binance_api_english
- https://t.me/Binance_USA
- https://t.me/TRBinanceTR
- https://t.me/BinanceExchange
How to report Bugs or suggest Improvements?
List of planned features - click 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!
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
We open source!
You want to say Thank You?
We hope you are enjoying using our libraries and that they are proving to be useful to you. If you have a moment, we would greatly appreciate it if you could leave us a review on Google. Thank you for your support!
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
Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for unicorn-binance-trailing-stop-loss-1.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 639c23719a2047b23440fdd080ec27a2542469b64581904875113269ba57277c |
|
MD5 | 2d98d53e8d874998f5c7bf886047c115 |
|
BLAKE2b-256 | 741aab1d872786102607ee053f3794c6f0e4afc887b2e433150c51b68fdbccb2 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11ebad08527fccbf3b090be47fd2aea1a736955009a7763fe14a7edf7ea5a543 |
|
MD5 | 4992c0581446edd3959140e25295e800 |
|
BLAKE2b-256 | 3517080b1ba3bce1ff965079e3bbf99b647e58d280cc9255440c3acaea806d54 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.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 | fc1c8fcde1eb68ac3a27d49314f547d311692df1043b1b2e3696bb3e3e3dd6c5 |
|
MD5 | 015c51ddadfbd6a4b7ea003063aef0aa |
|
BLAKE2b-256 | 382ff9f08ca91680c360436f6a8c5f7775b6a393254f82977ae5659f48395ddf |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6717c55956c4c1702db6fcc59be8d9d0b3ff392931c9ce4323608b250d2129a7 |
|
MD5 | f018d7e7da44cf661299bf7aaa7d79d7 |
|
BLAKE2b-256 | 41ad9b5d9638611ea105e7f51a49bf8e5aa87c410b44b8620e0327ac1c2509c0 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d56f3b1487cbca04f3bb546b55596ed46baeed1cbd302ec6e7df0d20d282a501 |
|
MD5 | 6a2bae0ebe49ebfda1d3ba99b3e03608 |
|
BLAKE2b-256 | afab6d69b534808131844780b56a09aa9f7bc41441a0e71131ed9e9e722cfe9d |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a39427b4885c93d0bd22741239fe455c88c4010a3895f0475880e5b583c7b725 |
|
MD5 | 2b3120bc47306a69839dc852026dcd3a |
|
BLAKE2b-256 | 7c4faa51f3701ff5c962603759f9a1bbc7d23818fae189515c20c22c9e03d141 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.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 | 4ed14e8d524853f27c6cbd503d44839389d1fb89184c0540ead77c5ecd040fee |
|
MD5 | ddc1bdf4f2396edef5056034757b7c3c |
|
BLAKE2b-256 | 881d97d443d2751de1634079bb7eb87946f0e869da68443cd50462d708f9e136 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 152424d13dcc0c4ebcee39bf773d8670922cd02526c0ad5f31e32580fd2c095a |
|
MD5 | 78eaddfe3e3c40c250c7d3b32227dd10 |
|
BLAKE2b-256 | 1c73bfdcb916df905d0998d197fd262d12c0be64eb64e77eb8854c9d3717494b |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0ce2519ab6cfe8ef15070cb49deabe968581baa03ac56feb4c16f53b8b9c0eb |
|
MD5 | eb85f351364169fec08288c9e9e77a48 |
|
BLAKE2b-256 | 1c2ca74121a35a901881ee21fcfac09ca9c4e0487985139189c3fca9ffd2232a |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 013910d32c82a933acf2ca7520553fa4241d2a47a175bce851234cddddcd658d |
|
MD5 | 8694fda95063c20d2a845dd4a8acd17d |
|
BLAKE2b-256 | 819ca5c8c5135e54fe86e4ea96868b095986cf20a65b5cebf7a48a14a36d6023 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.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 | 062544b459db07ccd50fd8020fcfb2aff23e9e02d24b4f407e486d7b8ddd172c |
|
MD5 | 8969cf5dd868f8a2e04bf5f4e35300f4 |
|
BLAKE2b-256 | 939229e531906da4225da4d2e21b4057bf011e516a7b26bbc4d81c2d9da1f41b |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0eaa3a0e62dc96df9d9080c7ee2c4d8e6a14d589db66e74ed90e3e9847f2f560 |
|
MD5 | dd5bbd0c3528a1e98f20fb596d53af48 |
|
BLAKE2b-256 | b68997d7e8b93cd225883099dbde1a5e0bc9b33c90f4e30866a6d4a77dfc2c3c |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07809fe02af3fc6aa80996b7eaea92c820853f62d1c4c72ca3a79fc70bdcf30d |
|
MD5 | 6aea027aa20183c2c90df922aa24a0af |
|
BLAKE2b-256 | 770322c33cf1d132ca98ea397f32f1948b84a74364a8bcf0bc54b7a9f2058fa1 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d2096d217206ff918598673b11c46d190dfe0e18d9b9009aaa99162350bbe7d |
|
MD5 | 6be330843491679f0fb4dfb86ce9d97d |
|
BLAKE2b-256 | 693b4032ee0246c40e209b29780402582ae22d452a5faccfaaf3da139d502a86 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp312-cp312-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3235d6397121efeec9b9095748b139a816977c48e249ada19f17696348e3a42a |
|
MD5 | 39ef22f235e091e30213819cce10d51c |
|
BLAKE2b-256 | 968fa0cb997d3a88b456d6f96062425a40489b7f436e8c67b0067d4a6a3dcfde |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp312-cp312-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5638f049982abb036511eda52ae1ddb4f32e596899c3da5100bc351da453979 |
|
MD5 | c39462906e24b123d689365b5cc5fa24 |
|
BLAKE2b-256 | 858a6dc83689a0306a4eae95a66d65f2b21dfbd8011f55281cc05e52f4d818ef |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac1aed383f02e1f6059dd4bce19fb6b874b9c1122831408a1f70e775f194d8d7 |
|
MD5 | fe3ee313b994a4fa561c4ea13d8327fd |
|
BLAKE2b-256 | f7e2ec49f958bc6a3cde922d7dbf046cd60ddb879cb5c26e71d2a5800408825c |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f7bd96c6354468737de15d0a8acd5561db22a91c06eece8eddb6cb59fc643f5 |
|
MD5 | f95bfad11b5a771254ebaa26a7ee610c |
|
BLAKE2b-256 | 04e0a61ee0afe99f1dfc2e31927ec50fde63df9db62d050d6a280828300542a7 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 476c52dc47ad6f97bdc58432f677d44c365c8f7881d23297b8ef4afbc0cda630 |
|
MD5 | 40217bd4f259247587a068f585f03a2d |
|
BLAKE2b-256 | ef5ec221727829aca5f7b4a22e9224abcec3a0bed0a0109bd9d5a6c82157d2a9 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 006aab24235bfbf2e8ede42820a7076f32294a480a95fad1eb9f3f660ac9ce88 |
|
MD5 | fe38a92a4a163925cae4afc997cfa072 |
|
BLAKE2b-256 | 37ecb4bfe6a41071e0c9e8870fb9c6c0e32edd6ad8f205b7bbc75105964f451f |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3e4524ab8569669451dd1abd8ea8a86e88a7777767c5b01a04db29efd1f9add |
|
MD5 | 7d34cb69ad1e69c64ffc834171a7fcad |
|
BLAKE2b-256 | c414a0044b19a312c5ac33744745b2eddefe3c0d4e0fea78c0f5cff9ed74de82 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp311-cp311-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 066d5627096f39fcc3863a41730e5bea8471487a309642d014ddab7950351844 |
|
MD5 | 8af359b3f4f751f8fb055acaab50d759 |
|
BLAKE2b-256 | 392a46c14d724076a51079f838649f813750956e1fd5678851aedecaa2fc7656 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp311-cp311-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f428641917d8ed0cdd9353d0443f3c8a0ab1c3a08f8f26d5566a80022ec99374 |
|
MD5 | 0516c299abbe70d0fe09ef5cdf9d5f99 |
|
BLAKE2b-256 | 1482f64d4c732403859afe8627638a533afd0052974cd15ec99427da8d9c2514 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee388518eea6548b05ff1eb31f8d52a52ea06998dba49d99bf2c83a745a15fd6 |
|
MD5 | e8f7736bdd7eb86b03f2e47bfaee9b79 |
|
BLAKE2b-256 | b898ef816c3888058906038c6717ef100961b79be3ea8f9085136fc8e20b4057 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e1e3dd72c06964de9458d4c4509527524da4c911341b9add46c509bd42ff1cd |
|
MD5 | 03ba71ce8c6c350d0b83e2a91998b184 |
|
BLAKE2b-256 | 9f7191a1d322a76374492fde3ac1ba95f3a3b880e972b55b24002b14cfa70c72 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a6ba347faf471f7f76a3ac033aa54bc5747ca955b4ad0d6a2e0cebdce64cc4d |
|
MD5 | 195f00483d2112fa2b631fdc2476f38e |
|
BLAKE2b-256 | 08db875cd428a3fd0b6c9d3af3cb0e76448f1f11fc2e2f9ee5ae46d3b6d712ee |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e59a0f662f454e028747634227c8581549bc5f0daab6612dbca291b4b79a6e4 |
|
MD5 | 46cbccc46a5574a990f8e9bdd6ec0ab3 |
|
BLAKE2b-256 | 9acbed9b0c6c1d59620f4a5395cdd068691fd1883215ab086d1c74dade33cbb9 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3a36c29c2eac3151d42513813c07055a5736cb7e160207cdeec98062d7716e7 |
|
MD5 | db3fee0c27f368192238c4368d32410c |
|
BLAKE2b-256 | 4ffc3aca8e9a46e6984696b86f60ea193c644bf62f74edcb7de9834a5f6f277d |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d40b67c62f93672f1034fc9ce0e67170c9ca5dd156c29dccc47f954553e8b737 |
|
MD5 | acf8f3ed11293784671e47fc073e677a |
|
BLAKE2b-256 | d2f8a0bbce8f7bcd108201bf199b6b39de6fc4754e9734dfeafc1a196e3f10ab |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp310-cp310-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a721a2bc36469ed62958f18ba66392799b18b1442681170ab106702b7e8732d5 |
|
MD5 | edd5352aeaf3592b123ae14404baa66b |
|
BLAKE2b-256 | 07fc92a5405b6c042a53e46cd6902c15f4ffbaee63f9bb7906b0dd6a4915a250 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32e614e9b932cf54fced995a1969750e342deb9d0400220b52fdd5ccdf4d02f3 |
|
MD5 | 3679cb347b20ffcfd7f62444c8506140 |
|
BLAKE2b-256 | 862ec70d670da6d4b98e50f56444d3faf857c5420a6e707cb7933ac8e5f52a5b |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cef469a6046921fc30aa76aebf934e8e843ba9ad0a44f92df2f709538604398 |
|
MD5 | 5dc218ecbea4954dc1c455cf28492314 |
|
BLAKE2b-256 | 7ff972c83d6c38fd547b979b3ebb3dde9edb49e7418a3020670d4dee024b339e |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dbd4c7f44fd1ef2a7a4910ae5324eb7b94019bfea6b8832b597aa0176a5afef |
|
MD5 | 5cdc1bc5556520edc8c4352cbae69bba |
|
BLAKE2b-256 | 5758e9663202c17a4a85294ddf70e62aff9aa7797b6e3c50b09cacb1f05f1fb9 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e59f2502c93d91898a00a43c227b254f3d8f5e0f861986722483b2c7c0cfe015 |
|
MD5 | d9b45898675770f02671208733cc9b37 |
|
BLAKE2b-256 | 0580d27ec861ca07c672409f365171c83715dada29b9a0d29dbb02277e3c6c07 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 534b93c59e7206c6a92cc988c000f20ae052ecf035cfd4f956341e5e82565b07 |
|
MD5 | 3683d16fc5e9d28cb1f0f57bb648c9c0 |
|
BLAKE2b-256 | ddfee5802655569071471ce62c638a8a443001e1785f0dd3013fabbca77d2616 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ebe9fe8c879a0469b52a84f379f11d6b5fee6e566cbd593433881d8322f360e |
|
MD5 | d77d66f4a72fe5f583a4dffd7e398c28 |
|
BLAKE2b-256 | 0e52e5146aac9c0f8d6bff4cba50fd8491907254b193f7cf0ab42f1ba9c72014 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp39-cp39-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b140abd399a893f79517ec7b7a99e7680ef8a0297857b76843be13c79fe46a7e |
|
MD5 | 13d38c3f9cc3362ed98bf28e77cd9610 |
|
BLAKE2b-256 | 781ec8641a71f4e7a0ae8e01325dd1e596294134dc8433a5dab89c7cadaf1099 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfdad3f851da21496ba5f66e77d9d0949053cd79ecf8ae1a5200708b9a9d716f |
|
MD5 | 0fd4b9b9419010241bbe2459a4a8f00b |
|
BLAKE2b-256 | d2784fe37ecaa9537c7cbef99561d845639c9e1e6681a0cccaa1c0f51ceec24e |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65721967790e14176884d4337ee03dac71c11f3b99cfcae3ae854ad6d203af92 |
|
MD5 | 9a6abda0933cd51e9f8a0c8f62484a53 |
|
BLAKE2b-256 | 6ed2013ce4bc5e8b1ccba2fd1646f913410693f8c5b8ff965ba3245b84bbb673 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b92b85b5fa93b9adea86fa2d26c7e5f0ed7484562bc7656565df0347ee85ac05 |
|
MD5 | 3f4726bd078bec6904e9841f650eefd4 |
|
BLAKE2b-256 | f06d676e5f97a8254fb226eb045b3f7f6b9204eb704f0c12d39ccbc209666f81 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb41d220db52fb9d26f242d63e0d169575a9714b23e3f347c40f26de58a87485 |
|
MD5 | 3616d47eafcdf8c33588df507c3d5ee2 |
|
BLAKE2b-256 | c322c4a4b59fc1677d929a71b3c1cdccaf33feeedae6daf020151bb7f2c185f3 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88c7c783792378231d0234f67e6d50dc934cf6e240751b803a275e4236858946 |
|
MD5 | 1d819e53fe3dd214328d29b2edbeceed |
|
BLAKE2b-256 | 8e3b829d29fff1074a14796538458c0ef387cac19d5712170de5e89277847f92 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdb0f6d8b801a1c5e8ac019b1be8896c1cf03eb1c12f346e7c5a9275fcea97b9 |
|
MD5 | e40df38ff2c1456e4b49a27cc135ad2a |
|
BLAKE2b-256 | 904eec904fc7de12921756a1e9f4bd59b807282ffcd403665c3e3e9661c0fc37 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp38-cp38-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b75722904aac7743a980e3654c0b40508338bb63599c83d27b8670d1259358e |
|
MD5 | 1bf9a231277eadba426c247a028ca039 |
|
BLAKE2b-256 | 16a2ba3db150046d36bdcef4caa578018662015b22ecdc20005e657909f197b3 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0daeb31399ad42d95917157de4f49c895bdabd7799f7e9c9b1568e1c0429bd4 |
|
MD5 | a8313c6cfb9a08e758c8d9ed67a5dd4c |
|
BLAKE2b-256 | 08812f92fa7717be9ba0f49e60223e6753df4274aa1428c0ef760342646596d4 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b40d0e8e6c95a61b277ff45d41f5a0a8e3176d663ec1623344c8b9f8d27d6a77 |
|
MD5 | 0bb86c4f3cf644945a87316596780cbd |
|
BLAKE2b-256 | eeece52b1e91f9c0ded5967f6970efb7ec945a414a63746b446d876f61ad03db |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cebdd4c21e93b2b4d6ffb402df9e20a2c0db8f7599eebd50327e1fd1c8844b20 |
|
MD5 | 7f365d364311e4964bef99555a47fba4 |
|
BLAKE2b-256 | 0e85b93f655ba56c589b9ed7c659d6ba6496e73f8837f31dbb5c97fa462ebf26 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24a5f45792dfef54e64837a2f360e97d19b4965e73f83d2fe8135b061cb1f279 |
|
MD5 | b71b26c3870ec91761299d95a551b9e6 |
|
BLAKE2b-256 | 2b91a5c2fc1bfe012283971357d589e574f8c0907c128668ce2240343d7cbaa6 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4776dfc1237f2f081e11333af4d069eff6f504d9469a9354a773e02b6fd5c81 |
|
MD5 | 834edea1b3939f1f846d5f4d5a46df4e |
|
BLAKE2b-256 | c3c01ff0eeebd1ec91ddd9ab8c6994fa7b1db242442eeab1c945b233a4079db5 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 674e9cd70926e0aa474191e86a2afd90c30259becf832f7967249ec87e048c6c |
|
MD5 | 6b234713945d04fbc48b8b663c2b637a |
|
BLAKE2b-256 | fa21c80b798a39e6c00e09711849daed9a202d0019acb57a7882b0df5ec8c46e |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca724afcad6e4a699fd1299edf581403a2029eabab301d33981e9d18c29aab4e |
|
MD5 | a055a4b37fb0fc0da0aac900cfc2992d |
|
BLAKE2b-256 | 56cb8554911fa2b9609d3e235dce0ab77050dcfdef6f7eaab68fa75bec3489c6 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 063a9168dcdcf441cb29a2005ca4b8c14a219623ba21dd672ee8ab75d5b93a34 |
|
MD5 | 915f74542bfb7207023003c17d20b6c6 |
|
BLAKE2b-256 | d959883e0cd3e3f536d7a7fa368b817bf2dc4104f6209366d73444581b650d73 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00d049e4c5f5ccb41acc71c0b4b20176a32f5479915247da429bc96c713c2b7c |
|
MD5 | f06e16d247d43ddf46fd1d0516298d8d |
|
BLAKE2b-256 | 2dadcf03f98f684e856d860e8c7a8791d84a68e0f089d7431ca899ff49ef20bf |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | df04e51d1d4dc0406df16158afc23efbd2dd33c8e16a90cd5691cd894b795864 |
|
MD5 | e4cc5c6afba7a6d9c5fac6b484745df1 |
|
BLAKE2b-256 | 1748649b53ee697aa1c9b9ad5d863bcf6718eb97a8f795ff0333f1f7c821d007 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb7cb3ef9cf5eaffc0b8d12170e726fdeb360442a4fca5c6660172c757b1f51a |
|
MD5 | d6f0bcd78217640557870ed1bca2aee0 |
|
BLAKE2b-256 | 3bc8fb0a08d024dc82e5113054a07b18e46c369e2770c362b4623dcf451d66b0 |
Hashes for unicorn_binance_trailing_stop_loss-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c42249313bb3daa5afdf666fc1a3313c2f29c99815a19afcf4077f3d3b7e997b |
|
MD5 | aa793c16f3d9467f2cb774d518d45d12 |
|
BLAKE2b-256 | 005500f2dc799b56bafda6f8519a4db012258f80203636438690caf07f1a2e7a |