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 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 Github Telegram

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.

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

Anaconda packages are available from Python version 3.9 and higher, but only in the latest version!

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 to be created, we start two GitHubActions:

Both start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and create the respective compilations and stub files, pack them into wheels and conda packages and then publish them on GitHub, PYPI and Anaconda. 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

A Conda Package of the latest version with conda from Anaconda

There is no conda support until the migration to conda-forge.

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/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.0) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/archive/1.3.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/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://unicorn-binance-trailing-stop-loss.docs.lucit.tech/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!

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.0.tar.gz (416.4 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.0-cp314-cp314-win_amd64.whl (219.0 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (215.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp313-cp313-win_amd64.whl (214.1 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (214.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl (233.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp312-cp312-win_amd64.whl (214.4 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (215.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.0-cp312-cp312-macosx_10_13_x86_64.whl (234.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_trailing_stop_loss-1.3.0-cp312-cp312-macosx_10_13_universal2.whl (440.0 kB view details)

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

unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-win_amd64.whl (214.4 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (225.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl (244.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-macosx_10_9_universal2.whl (460.7 kB view details)

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

unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-win_amd64.whl (215.1 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (227.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl (245.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-macosx_10_9_universal2.whl (463.4 kB view details)

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

unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-win_amd64.whl (215.7 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (227.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl (246.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (464.6 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.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0.tar.gz
Algorithm Hash digest
SHA256 c25ced78cb26da5eb849d0a5eedce8f972be04e9ba6a7ac91c43e6cc8c9bf96a
MD5 5d9f615487288eaf9905d4ea40ec6037
BLAKE2b-256 b6ab38591116753460552f1eaefd49956c61701ef87f3527d3101a719d1ecdf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0.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.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 93a00606b1120a53be5c4c9f625ebed5b6b71dafc9623ebd3f66b4a287ecd1b9
MD5 0d37b3e6c6943c9edfdf6b6bb87f5b07
BLAKE2b-256 bc2bea4e1e1e83f221f6bcc75271945be6812ddff86bec5c021919fd865801d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bda7a967a7ddd840fa49a7a3274cc3c29e02c49066eb6a31525ee847a28f8baa
MD5 c32ebf1faf071eff4f5fa4e02f1f9177
BLAKE2b-256 846d15203086649808ec55499cad92dd90015d5d9e91ec71a7d7bb23b2d332dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47a2913cb58f888aa30fe58e8a5ad02f292fe2241e2be9f28f4719dc8b3ceb38
MD5 9afbfe43ab006c50f22276d39044e0a0
BLAKE2b-256 9e700e0fea9f42e0391154877cc7c8502eb636b02d67cfa910e12c8ce74d4696

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b3f77826168ccece40b9e4e9f351fa41573f79cae5100708542a943562470f2
MD5 2cf125f3d65040d6a9f709a7fc80a914
BLAKE2b-256 fc2cb99e8f61e0c949fce049ea67dd723da0ca7af9ddc77a12c0043c1b1aaf2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b6f3e8d6e67f9f55da866d5673b2e26190dfc3534ca0042b5a2e3ad849cb690f
MD5 86d63409a88a253d72ac830da56c04b3
BLAKE2b-256 d564f68f3101310c781d8959f856633b8d1c9661a114d04de5388a07076347fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a80686507f6267fac410e07407039df1b3d1ce3eb32c1fadec137abdcdc763f1
MD5 c55f24409548198ec7ac3cc917fce3da
BLAKE2b-256 4ee30e2066718c377e299539dd47a92b2b7fe3a754b3815bdf1e12c697ccdd8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 67c0b4c3b93a950ac530bcce0690576eceed273a6cf3933a7798ac75a01c9ee6
MD5 1770bea0d227a90b35746fb0e6f2b7d2
BLAKE2b-256 ab4b27e6b6a92d8f16cd75f3d6695b922fa3e5c5b3f3c21777d98b02ffdcc419

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e835e84f366905d29def903c2618cffdcf6707b4aeb4b5778f1210696525cb50
MD5 13200c2736999eb62e11e9b7d20a7ca1
BLAKE2b-256 b9d5ba130719b0b50abb1a2d18ca4a6e6b3f8b72a54d2d38e6370ad70d4a0453

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 805b3edf4f8703e846653104332e954b68e00586581ddc5812d68f0d7b9e72fe
MD5 895524cc60f43bbd9d55eb25dd316061
BLAKE2b-256 abc9719056d1454c80025d7dfd8f9a37d8962782f74fb4ef9e204a5ddffe7792

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcfdd0956a92c291d701c2e1f4d345da6688145d07e940c132b09104f4a18a0e
MD5 1ebab1677ea1469dc05f77dc2917101c
BLAKE2b-256 966d03fdb904a38e90269749615c1da97f34a85353ed896dadf400a8b8f713cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c75de45e28bf9d5119892f36dd9192f43d450676adf41533f8e7db9a2b16324e
MD5 f6097088aadd343bf7826a7fdab9b3a0
BLAKE2b-256 f1508d1bff24a6b5c0f648fa95424fcbc3f3a0bd7f714d7e4dfba2b73aeece16

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b08d9e21fa4402fcef9d886797994cb53cf769b27c4f43b5199667c7e73efa37
MD5 0fc704592a6891a7fc0ed95c9c450820
BLAKE2b-256 0a4ea83e906a64dad85d702cb591b4e4e79db7d7267463ee42adaf03c0d35df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 40f0316235a20718dd26802cce2fd2c0c7651bde2409caaa82b4f5664b62ffb6
MD5 e27c499c3de5e90a9429ea43386712b6
BLAKE2b-256 51289ba2b6661b4cf5f0eab6a56ccfa34a176c41e2dfe6ea6c76f6bec9bb727d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee7ae82dafaf89f28eb8a760f95482eb11a746dd18222597fd49f76d34eb64bb
MD5 c2b568e2563a8c6f2b85d30415b5b049
BLAKE2b-256 0928ee5372d7b056e6b53c9e417489e8987ee4329bf5a0c86149fcdcd0898bee

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c699c496d1bd82c81bd9f673a2a35bbb1530a27a32f0d2979a4f3d4f5f14967e
MD5 dffa5e1b16faa717c508c5a0bfa07ccc
BLAKE2b-256 9f5f72bc18dcfe08998a5372344253d302b32445b807d4399a094e05c8c55e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7522d5d76b52ebe97355db56cf320103f36ae399b3aaa057b6cdbcc46c02375a
MD5 047c3e6163f14dc8570d012d7dcd31bb
BLAKE2b-256 9e1ff194ddd52ddc40b3035a1a87749cde973e606022d71a8bd3b7213b2cd25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e10fc697ba0c97e12e6f6f5679e42379165451a867927501fe0edf73cb4df01
MD5 bd9f4860acfff09131b87c4c717afeb6
BLAKE2b-256 aea7bb99f2837ca7460805f7e4afd2af737dfa233e64f1682a7adbd60adcea8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 97bf5f1c38ccc66133fd920ce3675d28524269719fd751bdf3779258b10963f0
MD5 7765ae70d15b0cf4d49d99d9281683e1
BLAKE2b-256 e80aee284a752aa97f1e477cafc24113b4e1e6c9a2d758ecf5429c6cf9d81015

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ec1cfeed1c7d274f7dc9d31abad4760d6a627126e799d440a2e942357829202
MD5 162c6e8f76a13b6b9a8c9d5b78ca051a
BLAKE2b-256 a3df2bf3b8838af643d040376353d34bb73ffd1612dd3de22082a76cad79e60a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e497e9bc96ddeee0d3d4d8e533df36c9da628c2c288806acae59b8783cc7e62a
MD5 411769ce6846c5f67eec442171a1d05f
BLAKE2b-256 aa679063b4bef74f4b6c1c1b47cbd8a36729e5bab8b170f8c135332ee84fe9a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 105cc6d307c479c277a11a9c7e5391306d25836ad2af330cb00163c937e3fc2f
MD5 34bd2d038f21c4dd69ec832bd862b752
BLAKE2b-256 94e625712179111b8c3ef42880d94e4b0148e2bee60a96aa62bdafd276b9e14a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7335d039ef0cd4265283033822a4d7fd0ddbc2aeb8c23e82cc68114f9dc6d65a
MD5 6f12f556def31c7c983be5c428c6b1d4
BLAKE2b-256 91a2169c742bf35db29cde7c3c0f017a7ebcd279a37918c0ae08975f1e519dda

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61bc52fd1dcfe4f14ecd944556edce3dd9f5ce3bfcf56dd3050f06991531a021
MD5 a15f24c9e3d508f100a137b9258b37d7
BLAKE2b-256 4898f5787b47630611c694484927f847291030ada368ed6c12c756083d831dea

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d68bca46ffd64db1dd3de193fb333cbb53f902ae973076548da94e6ff294831
MD5 37f4dd19493c005976229fffd6d11002
BLAKE2b-256 81cbb0bca277065d4bb18376453a1e0a58018f0bf97c6123eb7205ce67426770

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a54936e47c0bcb87cb715caa12eee4775b9fe3caff5caebc502a9caeb02a3551
MD5 3d0911b32cabeb415b06aaf54191d269
BLAKE2b-256 ca4558d3dacdd13241ede9bb3e85c879a0cb67c4f0c28ebdf7fed067189bf6e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c864627e2d326897cf84a661543eefe329e6d4b85b61ed29a75040590e42d438
MD5 e71dd7ed6d8947602411433f45157c81
BLAKE2b-256 ba2e22c6169b8a5a884cc1426430483345c39343873798d83525179956b3944b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10892175e82fba1143bafffda139c5615a0cec1519c61600c2e24d6ed9a34b35
MD5 5c8cbff665e669c19aff7ad4566a3bd4
BLAKE2b-256 d45b677a5598bee23899673e065163a71aa4d03279deb4850daf104637ae4c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 833fcfaaf17ba2074ccae2c8c538150833a1069874297a0d20e274802dfa883e
MD5 b7eb16edd1ee7c13d8d748a43ff28144
BLAKE2b-256 4131d36505719a44d23761927d21efbc0c34fcd582a61f4ca06a8d232aebdc16

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa53518785459d85c71b44d3583c7637a25def371e63aac5ddef87d82d9a859c
MD5 b895513cd3b775d918023e5c4bc7fc0b
BLAKE2b-256 6adb7faa2bb7278ce2cbc4f7c12974fb179f5633846e38467d9c925dfd0c392f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0253f1e4ee33981475bcd4a339ad18c7c060e8571ea942b9e38439a70b79353d
MD5 e9798bf66961f7f60592822150a2f679
BLAKE2b-256 9ce3c6d955033989f65f7eabe0ca63b34ed4fdf710315dd98665d8d9f52c5c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 027e89e93ef87fc544c3c8179c5263c1335f7df9010f444652691d55c86c7c10
MD5 6f3521d76b30f617a9489fdd97b514bb
BLAKE2b-256 ee0064044611c87131bfca7018d43852d4701f7e11aef61f4aeb2349b65a5cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57dd8a50ea0794c24495de57f65c131e80645dae8c176363ff3d99a11384926b
MD5 cd0881ca7f38a0563aa58894d2df8b17
BLAKE2b-256 453245cd74db90f44503da2b424bf850f89498b71aa2f728ea034b14419e43a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23bdfd49016085afcbd7435d673c107724e1ed0d079744b2137c3977710282c3
MD5 d806844cfed93ab263820506755e6f28
BLAKE2b-256 b97f3023314c11136583b6c83beea29bbcc3487cfcea799c8abd50e7deeefc35

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0695f084a9dcdfc8a53dc0d66c2b4bdd17dbac9c99f84b410a5e426b6ea5e5c2
MD5 b4fe7eed1cce234b6be0f0c3cf865cf6
BLAKE2b-256 0b52ebdb3667f4d5fe4b7c6c9fda6dd91fbf29fc3ea1a7278434c9220741a333

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb67c74288ecec4e8e260ded4cbadb7123ab3c878813f7e7b3aeceaa0e7444d0
MD5 558919ddb4d47865f7aee766b48999db
BLAKE2b-256 650f63089e83424b3df126ba12a08c68a8ac252954e4ecea481e206e98993dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_trailing_stop_loss-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 89fd3e89b76eb22512e393faebf4c2b533df4e6579efa10de1e5e64eeb370cbd
MD5 2e9e2ef4eb9b160ffbe5aa372a0f72d9
BLAKE2b-256 8c5a46ae5118ec6bd197b21be7fb109a1b5ebf17fea2d990b5fcf76b05c79a8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.0-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