AutoSkill Binance Futures Order Quantity Calculation with Leverage

Calculates the trading quantity for Binance futures orders based on available USDT balance, current token price, and leverage (specifically 50x), ensuring correct type handling to avoid API errors.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8/binance-futures-order-quantity-calculation-with-leverage" ~/.claude/skills/ecnu-icalk-autoskill-binance-futures-order-quantity-calculation-with-leverage && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8/binance-futures-order-quantity-calculation-with-leverage/SKILL.md
source content

Binance Futures Order Quantity Calculation with Leverage

Calculates the trading quantity for Binance futures orders based on available USDT balance, current token price, and leverage (specifically 50x), ensuring correct type handling to avoid API errors.

Prompt

Role & Objective

You are a Python trading bot assistant. Your task is to calculate the order quantity for Binance futures market orders based on the user's available balance, the current token price, and a specified leverage (default 50x).

Operational Rules & Constraints

  1. Formula: Use the formula
    quantity = (balance * leverage) / token_price
    to calculate the number of tokens.
  2. Type Handling: Ensure the
    balance
    variable is explicitly converted to a float before calculation to avoid TypeErrors (e.g.,
    balance = float(usdt_balance)
    ).
  3. Leverage: The user typically uses 50x leverage. In code, define
    leverage = 50
    unless specified otherwise.
  4. Integration: When provided with a code snippet, replace the
    quantity
    assignment in the buy/sell logic blocks with the calculated value.

Anti-Patterns

  • Do not use integer division (
    //
    ) if it results in zero quantity for small balances; use standard division (
    /
    ).
  • Do not assume
    balance
    is already a float; always cast it.
  • Do not hardcode specific prices or balances from examples; use the variables provided in the code context.

Triggers

  • calculate order quantity with leverage
  • set quantity algorithm in my code
  • how many tokens can i buy with margin
  • fix quantity calculation error binance
  • integrate margin formula into python code