Alphaear signal tracker
Skill RKiding/Awesome-finance-skills/skills/alphaear-signal-tracker
Track finance investment signal evolution and update logic based on new finance market information. Use when monitoring finance signals and determining if they are strengthened, weakened, or falsified.From its SKILL.md
npx -y skills add RKiding/Awesome-finance-skills --skill alphaear-signal-trackerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.8 KB, 391 tokens by cl100k_base, as published. Nobody here has run it
AlphaEar Signal Tracker Skill
Overview
This skill provides logic to track and update investment signals. It assesses how new market information impacts existing signals (Strengthened, Weakened, Falsified, or Unchanged).
Capabilities
1. Track Signal Evolution
1. Track Signal Evolution (Agentic Workflow)
YOU (the Agent) are the Tracker. Use the prompts in references/PROMPTS.md.
Workflow:
- Research: Use FinResearcher Prompt to gather facts/price for a signal.
- Analyze: Use FinAnalyst Prompt to generate the initial
InvestmentSignal. - Track: For existing signals, use Signal Tracking Prompt to assess evolution (Strengthened/Weakened/Falsified) based on new info.
Tools:
- Use
alphaear-searchandalphaear-stockskills to gather the necessary data. - Use
scripts/fin_agent.pyhelper_sanitize_signal_outputif needing to clean JSON.
Key Logic:
- Input: Existing Signal State + New Information (News/Price).
- Process:
- Compare new info with signal thesis.
- Determine impact direction (Positive/Negative/Neutral).
- Update confidence and intensity.
- Output: Updated Signal.
Example Usage (Conceptual):
# This skill is currently a pattern extracted from FinAgent.
# In a future refactor, it should be a standalone utility class.
# For now, refer to `scripts/fin_agent.py`'s `track_signal` method implementation.
Dependencies
agno(Agent framework)sqlite3(built-in)
Ensure DatabaseManager is initialized correctly.
What ships with it: 35 files
283.1 KB alongside SKILL.md, 34 of them executable
references/
- PROMPTS.md2.0 KB
scripts/
- fin_agent.pyruns3.8 KB
- __init__.pyruns0 B
- prompts/fin_agent.pyruns6.6 KB
- prompts/forecast_analyst.pyruns1.9 KB
- prompts/intent_agent.pyruns2.2 KB
- prompts/isq_prompt_generator.pyruns1.8 KB
- prompts/report_agent.pyruns18.1 KB
- prompts/trend_agent.pyruns7.4 KB
- prompts/visualizer.pyruns2.0 KB
- schema/isq_template.pyruns13.6 KB
- schema/models.pyruns6.1 KB
- tools/__init__.pyruns448 B
- tools/toolkits.pyruns18.7 KB
- utils/content_extractor.pyruns4.7 KB
- utils/database_manager.pyruns21.3 KB
- utils/hybrid_search.pyruns8.0 KB
- utils/__init__.pyruns25 B
- utils/json_utils.pyruns6.2 KB
- utils/llm/capability.pyruns2.8 KB
- utils/llm/factory.pyruns3.6 KB
- utils/llm/router.pyruns2.8 KB
- utils/logging_setup.pyruns1.0 KB
- utils/md_to_html.pyruns4.8 KB
- utils/news_tools.pyruns9.9 KB
- utils/predictor/evaluation.pyruns5.6 KB
- utils/predictor/kline_generate.pyruns7.6 KB
- utils/predictor/model/__init__.pyruns394 B
- utils/predictor/model/kronos.pyruns30.4 KB
- utils/predictor/model/module.pyruns22.3 KB
- utils/predictor/training.pyruns18.3 KB
- utils/search_tools.pyruns28.6 KB
- utils/sentiment_tools.pyruns9.9 KB
- utils/stock_tools.pyruns9.8 KB
tests/
- test_tracker.pyruns565 B