Sar Calculator
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears to be a straightforward stock-market SAR analysis tool, with only expected package installation and Baostock data access to notice.
This appears safe to review as a normal market-data calculator. Before installing, be aware that it depends on third-party Python packages and sends stock query parameters to Baostock. Treat its trading suggestions as informational analysis rather than financial advice.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Installing unpinned packages means the code that runs may depend on whatever package versions are available at install time.
The skill asks the user to install third-party Python packages, and the versions are not pinned. This is expected for the tool's market-data purpose but is still a supply-chain point users should notice.
pip install baostock pandas
Install from a trusted Python package index, consider pinning versions, and use a normal isolated Python environment if possible.
Requested stock symbols and date ranges are sent to Baostock so the calculator can retrieve market data.
The code contacts Baostock to fetch stock-history data for the requested stock code and date range. This external API use is clearly aligned with the skill's stated function.
bs.login(); bs.query_history_k_data_plus(bs_code, "date,open,high,low,close,volume,amount,turn", start_date=start_date, end_date=end_date, frequency="d", adjustflag=adjustflag)
Use the skill only if you are comfortable with Baostock receiving the stock-query parameters needed for analysis.
