trading_signal_strategy_implementation — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited trading_signal_strategy_implementation (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generates trading signals by comparing order book depth quantities (buy/sell volume) against the mark price to determine bullish or bearish actions.
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.
client.depth(symbol=symbol).buy_qty by summing the volumes (index 1) of all bids in depth_data['bids'].sell_qty by summing the volumes (index 1) of all asks in depth_data['asks'].buy_price (best bid) and sell_price (best ask) from the depth data.buy_qty > sell_qty, set market sentiment to 'bullish'.sell_qty > buy_qty, set market sentiment to 'bearish'.buy_price < mark_price, return 'buy'.sell_price > mark_price, return 'sell'.buy_qty, mark_price) unless requested.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.