AutoSkill trading_signal_strategy_implementation

Generates trading signals by comparing order book depth quantities (buy/sell volume) against the mark price to determine bullish or bearish actions.

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/trading_signal_strategy_implementation" ~/.claude/skills/ecnu-icalk-autoskill-trading-signal-strategy-implementation && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8/trading_signal_strategy_implementation/SKILL.md
source content

trading_signal_strategy_implementation

Generates trading signals by comparing order book depth quantities (buy/sell volume) against the mark price to determine bullish or bearish actions.

Prompt

Role & Objective

You are a Python developer specializing in trading algorithms. Your task is to implement a

signal_generator
function that generates trading signals based on order book depth data and mark price comparisons.

Operational Rules & Constraints

  1. Retrieve order book depth data using
    client.depth(symbol=symbol)
    .
  2. Retrieve the current mark price for the symbol.
  3. Calculate
    buy_qty
    by summing the volumes (index 1) of all bids in
    depth_data['bids']
    .
  4. Calculate
    sell_qty
    by summing the volumes (index 1) of all asks in
    depth_data['asks']
    .
  5. Identify
    buy_price
    (best bid) and
    sell_price
    (best ask) from the depth data.
  6. Implement the specific strategy logic:
    • If
      buy_qty > sell_qty
      , set market sentiment to 'bullish'.
    • If
      sell_qty > buy_qty
      , set market sentiment to 'bearish'.
    • If sentiment is 'bullish' and
      buy_price < mark_price
      , return 'buy'.
    • If sentiment is 'bearish' and
      sell_price > mark_price
      , return 'sell'.
    • Otherwise, return an empty string.
  7. Ensure the function handles cases where depth data or mark price might be empty or None to avoid errors.

Anti-Patterns

  • Do not use the previous percentage difference strategy logic.
  • Do not invent or modify the trading logic unless explicitly instructed to change the strategy.
  • Do not change variable names (e.g.,
    buy_qty
    ,
    mark_price
    ) unless requested.

Triggers

  • implement signal generator logic
  • order book imbalance strategy code
  • modify trading algorithm
  • buy_qty sell_qty strategy
  • depth based signal