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

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

UBS-Banner

UNICORN Binance Trailing Stop Loss

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

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'.

How to start the trailing stop loss engine:

from unicorn_binance_trailing_stop_loss 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 afterward. 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.

  • Available as a package via pip and conda as precompiled C extension with stub files for improved Intellisense functions and source code for easier debugging of the source code. To the installation.

  • 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.9 and runs smoothly up to and including Python 3.14.

PyPy wheels are available for all supported Python versions.

The current dependencies are listed here.

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

Packages are created automatically with GitHub Actions

When a new release is created, the Build and Publish GH+PyPi workflow spins up virtual Windows/Linux/Mac runners, compiles the Cython extensions, builds the wheels and publishes them on GitHub and PyPI. The conda-forge feedstock conda-forge/unicorn-binance-trailing-stop-loss-feedstock picks up the new PyPI release automatically and builds the Conda packages on its own infrastructure. This is a transparent method that makes it possible to trace the source code behind a compilation.

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

conda

conda install -c conda-forge 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/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/archive/$(curl -s https://api.github.com/repos/oliver-zehentleitner/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.3.1) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/archive/1.3.1.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/oliver-zehentleitner/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://oliver-zehentleitner.github.io/unicorn-binance-trailing-stop-loss/CHANGELOG.html

Documentation

Examples

Project Homepage

https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Wiki

https://github.com/oliver-zehentleitner/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().

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 don't 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!


AI Integration

This project provides a llms.txt file for AI tools (ChatGPT, Claude, Copilot, etc.) with structured usage instructions, code examples and module routing.


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.

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.3.1.tar.gz (434.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl (219.1 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl (215.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl (235.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl (441.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl (214.2 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl (214.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl (234.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl (438.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-win_amd64.whl (214.5 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl (215.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl (235.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl (440.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-win_amd64.whl (214.7 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (225.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl (244.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl (461.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-win_amd64.whl (215.3 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (227.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (245.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl (463.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-win_amd64.whl (215.9 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl (227.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl (246.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl (465.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1.tar.gz
Algorithm Hash digest
SHA256 d526603535789ae6b510676fb5425ef42e53274dcf6a3834d3c77cbdef839187
MD5 63382344475257f1221708fadc5081c2
BLAKE2b-256 2f1295545177a27d52b764d0dc8d59a811ff96f72e86c33cf5679793437271fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1.tar.gz:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dd3e8d15d456626cef96b8d11d732149597f9362fe81a572e4c7e3506a8d1321
MD5 59789e1bb9591d03829fa3816dc39746
BLAKE2b-256 67dbc3f5d3d7af26fa014e049256d557a3ec529e8f78c9d0e161b70e38d15c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 181fd2a7e9af5f27b0f868fff0ea49f7526e6d7e23b4b905c31cc569e729ce77
MD5 159486730b1c94b602f78c7a40a16838
BLAKE2b-256 2b99e74e67e2d120c014e6e7540955400b2280f6c87f5c5dc605b95d021722a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a65d7ce938186756bfba57394f72f8c53696bb50ee92a98583fe53c60818ae17
MD5 0d1e5e1fe272c61c4e196bbd9c0078fa
BLAKE2b-256 fb74e35b9b87d55df0e2b9f8093168288aba6df51d516c6548698d37318f55b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1619abe9714c375c74852a5ca4556f997e2b40900e4af66d29a2b0a9799aeac
MD5 ed48123470ecf4f76175fc3508819d00
BLAKE2b-256 8862443ef9a37460b720d8229043eddf459a43e867aa3839e38e2f1531466545

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2d7009ea2329795082f30c42553fbdc6f68a03dcf78b7f3f7e124157be85662e
MD5 3fd9f3b3faeefd706ce6c5637200fb5f
BLAKE2b-256 7fe294be98320d5c9537661d13036ba4ca7e891c8cb14c8b77204c835657b1c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9164e563892aa3c4a3777860fab97dd29707bb4a651a41a398358acfb688d6c5
MD5 f1f83fc4bf48a7e43de9d7316cd5589c
BLAKE2b-256 fb12cfa6321361207e79b7893fc2b63fd495e090f8aa56b028d344d17a810235

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 03045df4695df4a801020034b518fffa63668a354170931b256507305319b8c2
MD5 119462948a61685ba3e761268169f738
BLAKE2b-256 a6202affa43309e5ca58a09c438c3a536d0c9d3f607fea2ca0db765ee89a8b41

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8957894879d1028a6069b8280308cda78d2e9430b2d67b48fef3f27f6736ad6e
MD5 4f029034c46b7934b30154d4cd659f06
BLAKE2b-256 310d8736face739d8eb7f4da2646b6fddcdb0423f7df232abb39d6a9ab970464

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afd3729ece2f865da1b1469d681b04aecc576522b2bdad1930af4eefc4ed3ed8
MD5 660cad424fdb4a5b02a95660ad7327df
BLAKE2b-256 95cc27e83342fb6ce11bf3c45c8e47524ee2a5004f168e6770e5f9472263beac

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b5fdf0318a569b333464a0c82d8893f821980008b2f54d0d83f0b544d36f3d5
MD5 275b45437390c8e50701afa6b0ba5a11
BLAKE2b-256 7a42a0c9f907389223406bd3216c0852a6591c42e469760ee2ae86ec3b8d7a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ed81da07183f981a19f513a4ce3302fff4c85b0010575d0b5511acb77ce5036
MD5 25b7f995e5afa9b3219513c498629790
BLAKE2b-256 f4413c8477f6a5666ba21a2d4d92298b9d495e435a85c8840018bf0c0fa0bbae

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b1847eb4b853e8e809b11723cd6a5cbf219072b3c874a0948008106a40ee67f6
MD5 9b57f0ff3582b32ab4c41772016f8b0b
BLAKE2b-256 f2aed783836d721cd12fd007320e6955d7b29f1f93e8bd0d931d686c8f8a0da7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1795f4ff166e531d2558ba63ff65b13aa4ca48798456485c48c35dcf83de6948
MD5 1259357613e0388e99e077aa1edf654a
BLAKE2b-256 68ddb4059ad0253d232ed0bbc9e4018f733a9fb421676629607e3d3b16213421

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9b4003b2f9d2820ef1e5c2daa32bd319b76df800e73be82ea3c1064f55ff5e5
MD5 cc78d23660f161d27d11c4d46b4095fc
BLAKE2b-256 504840836768e072c1948b6615734deb17286c76aac0f6b6895eb824f9f0dd14

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c49400fcf8dac4863ddcdfc566ff4f80c0a6b81eb078eb96a8a4cba9fb9dd25
MD5 61048abd681be718fb3b1691e67c1e79
BLAKE2b-256 a489bfff465afdc15950bc70d00ed394c4bacb21f4a7e66e8cca5650d647ecbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 063b092167a09de5a1a42d6735f045c2ea3a6fb146501f4c3d65283852ffc5fd
MD5 a1d4b76e0c31c9828c1de2d9aa9795c4
BLAKE2b-256 74c323a1753b826d80e88dd455987a37c8e0c0df36f1c651fc2490ba143665a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90da03d939fbb2f74cb588acf5db04ae56fbf5db83f9600caa34b8cf341088f6
MD5 9980e49a27d58d797415b53fd106621c
BLAKE2b-256 8a200d812d426efb4b761c55082a2fa858b5ee63d2cd2570202a7d95133f22af

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2b805a36886b18459b5b1a5b77eac4014c5ef271e0c55c15180c482eb555d365
MD5 c1d25bbd5fe28a75cd363d3f5ddf78aa
BLAKE2b-256 dfd759e42ae2b19c1f35f89b69a39bab1ffffea559a9aaed5a7d5f4376fc619c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c6831a18b0c0be9b4d4ce051f9a32878ce77ccab5a2e74d33ea874ca2a4ba99c
MD5 234fedd0bdb4cc14b97e7b39dfccff2c
BLAKE2b-256 75650b583d095de6a1e39c2d9e11b9929352695141f87585caff82bb905c5a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43b14bdcc718d4ac9f6d1e6c35a3727130d3229d19142fb1c037709fac5bd34e
MD5 58fe4a979956924602cbedfd0af53da7
BLAKE2b-256 f32e7ea1027d01b582ab3cc1370ea67f8786f13769a94d4cbc71c567777b5b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13f7c6ffec19163673ad1ef960ea8113fe166f62095d89457c16d5f6bb6a1ef2
MD5 0dabc5975bdccb3f933cbd9c9c6d8165
BLAKE2b-256 7f786d49e9c095539e1c203da9bab8b962b668d9823ae88cce7ffb30857526d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82dc6e3e09ec34e8b2897bc074b43885dda0a2180d6860b19949450be9d83e1a
MD5 20f6520f0f5a4aa152578cd0270bfaca
BLAKE2b-256 d0c962d54bde6909d3ee54de42256f747261a211924fbd92f580c02f2f44ead7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72a31e9258305a5ea3d945c16a84a3455cf18a80eae6a9fc0dc2136540248d17
MD5 94f7aab8afc64695f2e8911ead3802d1
BLAKE2b-256 515f70404e136931ed980f2617625794141a4c07acf52d920112fbacec6e28e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 73396c9bd9158fd5dd9796bacb91f0a47fc608142e67d4712b503b4c410f5396
MD5 1f8b56b8c138b7efd49bd48abfc057d5
BLAKE2b-256 4e08bd4fa9d7990da33879cda25268f57168b04a6d22ec67ba753bea0f072698

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51062eb2c3000718d2c07f12e94f440f9f57694c92a81793ae2beaac0b787cff
MD5 90792c896052e162cd4cc594b98f3fea
BLAKE2b-256 24874ec43d663a5d8a35f2a8f9e60b1b9bf60e05f945056e70b476e42b94d13e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2662f5e415f23974d6635cf649f4ce8e6ba9a4f5a994284a512f11ac3421a8ad
MD5 0035a94c74fa0acda9039481cc0e0164
BLAKE2b-256 7f4dc349a273cacb6a698f1d2dd0e5b79c60ebcee5e208939d0fd7c01f5db9b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0e85619b4ffd35be1012d9598b78033fede5621f9e9292147bd5e9e1658a275
MD5 c220259c2bed0cc7c3b9e4a0f50a4271
BLAKE2b-256 d6a3fe6368d309b0082ebe5367201724c912df21c60c8f5605d2f688132df2c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d98da8a28b2a435856ef6c530bd02335b9fe3709689de68272a454fded3e7a54
MD5 8d2ef49cb26ed4bda793931d27710679
BLAKE2b-256 56c88b44b5d02f3edbf8b4f99d27e783512531cb95d9eeaacece1c85a60ced92

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c9bc8d5918e89a742e23aa95c7648829b9368c6fda1547074a1a8accee0acee
MD5 b20386a52fcf7d0d6e4e3e7d61a199ac
BLAKE2b-256 875cf1b85f9309f5529d7c90156c7fdfda9624cdf8f4f711f72eed7792b6b8d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 21e314757212b90ae4fc0be4c0c76ddd9a7e5fbd0b38d985a18f0a84b2fffbb3
MD5 c316dd59031dbb764c5005bb93d531dc
BLAKE2b-256 3642bb7f8731ee256c0f42a87e24ddbb624276a1c721f7e7855a8e6eb7f4c4f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a1a62d9e3fedd032415b5d4eef8a3a6166b2d562b01e2ddd1535529d36c1567f
MD5 9b77143c37bfdadca165eef14a860963
BLAKE2b-256 3f5fb8332acf59512ab4e0ea3c9b00892ada0d39efceb770f26d9902899203b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3de9c8bc34246cd28c361e8ff3c55337041cf3fcc99f8d9736f0bdf9e5a81e9a
MD5 be873e14e8f7e0d10f9834fe2282096e
BLAKE2b-256 849b70210407e70376878ff480db3138f110b73a359c44a43a2d4678da7a3c6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 868c79eb6e014cc95ab580e0f8ae378fba2723e04abb324b9695beaccc1f7513
MD5 4a5993862223efcd0ec44a22f2d92701
BLAKE2b-256 316dfb903a6561e22a8480847761f29a16918b6bbdad5b72ea5dcd8d525133aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5afd3aa02db406a6b32dbaf87ede9cbe3bbc4ff530dadeb61418b911f7f96981
MD5 ff34dc7ef012d505d64c27fdcab5268e
BLAKE2b-256 5eff4d5523058f1d2b5a437621d4c21b2d3506441998e9a74211dc51e2afc5c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd8acf83a5df5a8724d8d2f5e8f1e9388e164e458d4b608c6b7f5fcb1aa68aa7
MD5 f4d422156d612cc05dc57bd1ea034509
BLAKE2b-256 6097a8093ae0c4f21ef7d7c5d09ba51ad93fe0440d312ce1be6ba9ada58e9cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e6540833c0e16602081f877f9dcc586787f410b4698591a20eedeb0ddf9ae21d
MD5 aa57e0ddbf48cd407a51fc53a692744c
BLAKE2b-256 9241c05100e1dd03a6c4002e5783795f87b3708c52a39e3c5ba4dcbf09684e6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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