Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
A-share short-term trading decision skill for 1-5 day horizon. Use when you need market sentiment, sector rotation, strong stock scanning, capital flow confi...
A-share short-term trading decision skill for 1-5 day horizon. Use when you need market sentiment, sector rotation, strong stock scanning, capital flow confi...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
Implement in sequence: Run short_term_signal_engine(analysis_date) for target date. If needed, persist prediction with run_prediction_for_date(analysis_date). Compare prediction vs actual market with compare_prediction_with_market(prediction_date, actual_date). Output report with generate_daily_report(analysis_date).
analysis_date: YYYY-MM-DD or YYYYMMDD Returns weighted short-term score and recommendation status. Always returns friendly no_recommendation_message when no tradable candidate exists.
Runs signal engine for the specified date. Appends decision snapshot into data/decision_log.jsonl.
Loads prediction from log (or auto-generates if missing). Compares predicted candidates against real market closes on actual_date. Returns per-stock return and summary statistics.
Required behavior: Never return empty output. If candidates is empty or signal is NO_TRADE, explicitly say: 当前暂无可执行短线买入标的. Include reason and next action.
python3 main.py short_term_signal_engine --date 2026-02-12 python3 main.py run_prediction_for_date --date 2026-02-12 python3 main.py compare_prediction_with_market --prediction-date 2026-02-12 --actual-date 2026-02-13 python3 main.py generate_daily_report --date 2026-02-12
For recurring optimize-then-recommend flow, run: python3 subskills/config-optimization/optimize_from_aggressive.py --analysis-period "2026-02-01 to 2026-02-12" python3 subskills/daily-recommendation/generate_daily_recommendation.py --date 2026-02-14 All generated artifacts are stored under data/.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.