agentsclimarketplace

Trading signal strategy implementation

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/trading_signal_strategy_implementation

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

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

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.

What its author says it does

Copied from the file, not written here

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

SKILL.md

2.3 KB, as published. Nobody here has run it

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

Keep looking

Skills are one crate of 328,083. 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.