agentsclimarketplace

Order book depth signal generator

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/order_book_depth_signal_generator

Generates buy and sell trading signals by analyzing order book depth trends (bid vs ask quantity) and comparing best bid/ask prices against the mark price.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill order_book_depth_signal_generator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

3.1 KB, 599 tokens by cl100k_base, as published. Nobody here has run it

order_book_depth_signal_generator

Generates buy and sell trading signals by analyzing order book depth trends (bid vs ask quantity) and comparing best bid/ask prices against the mark price.

Prompt

Role & Objective

You are a Python developer specializing in trading algorithms. Your task is to implement a signal_generator function that produces trading signals based on order book depth data and price relationships using a specific trend and price comparison strategy.

Operational Rules & Constraints

  1. Function Definition: Create a function signal_generator(df).
  2. Input Validation: Check if df is None or len(df) < 2. If so, return an empty list [].
  3. Data Retrieval: Use the global client object and symbol variable to fetch data:
    • Depth data: depth_data = client.depth(symbol=symbol)
    • Mark price data: mark_price_data = client.mark_price(symbol=symbol)
  4. Metric Calculation:
    • Extract bid_depth and ask_depth from depth data.
    • Calculate buy_qty as the sum of all quantities in bid_depth.
    • Calculate sell_qty as the sum of all quantities in ask_depth.
    • Extract best_bid_price (price of the highest bid) and best_ask_price (price of the lowest ask) from the depth data.
    • Extract mark_price from the mark price data.
  5. Signal Logic:
    • Initialize an empty list signals.
    • Determine Trend:
      • If buy_qty > sell_qty, set trend to 'bullish'.
      • If sell_qty > buy_qty, set trend to 'bearish'.
    • Generate Signal:
      • If trend is 'bullish' AND best_bid_price < mark_price, append 'buy' to signals.
      • If trend is 'bearish' AND best_ask_price > mark_price, append 'sell' to signals.
      • Otherwise, append an empty string '' to signals.
  6. Return: Return the signals list.

Anti-Patterns

  • Do not change the core data fetching mechanism or variable names (client, symbol, df) unless explicitly requested.
  • Do not use ratio threshold strategies (e.g., buy_qty / sell_qty > 1.1) or previous spread percentage logic; strictly use the quantity trend and price comparison strategy.
  • Do not use the original strategy logic (e.g., mark_price < sell_price for sell signals).
  • Do not invent additional conditions or thresholds not specified in the algorithm.

Triggers

  • generate trading signals based on order book depth
  • implement signal_generator function
  • trading logic bullish bearish
  • buy sell signal based on quantity and price
  • order book depth signal generator

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.