Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
rkiding avatar

Alphaear Predictor

  • 529 installs
  • 2.8k repo stars
  • Updated March 29, 2026
  • rkiding/awesome-finance-skills

alphaear-predictor is an agent skill that runs Kronos-based time-series forecasts with news-sentiment adjustments for developers building finance market prediction features.

About

alphaear-predictor is a finance skill in rkiding/awesome-finance-skills that combines quantitative forecasting with news-aware adjustments for market time series. The workflow starts with scripts/kronos_predictor.py calling KronosPredictorUtility to produce a base technical forecast, then applies a Forecast Adjustment Prompt so agents revise predictions using current news sentiment. Developers reach for alphaear-predictor when prototyping trading dashboards, risk tools, or research notebooks that need structured price or product forecasts instead of hand-tuned spreadsheets. The skill documents a two-step pipeline—generate base forecast, then agentically adjust—so agents know which script and reference prompts to load. It fits teams integrating Kronos predictions into Python backends or agent workflows where macro headlines should shift model output. Reference prompts live alongside kronos_predictor.py in the awesome-finance-skills repo. Agents load Forecast Adjustment Prompt text after the quantitative pass so headline risk can nudge direction without replacing the underlying Kronos signal entirely.

  • Generates base quantitative forecasts using the Kronos model
  • Applies agentic adjustment layer based on latest news sentiment and logic
  • Returns structured KLinePoint predictions with configurable lookback and horizon
  • Integrates directly with DatabaseManager for ticker-based queries
  • Requires Kronos model weights and embedding model in exports/models/

Alphaear Predictor by the numbers

  • 529 all-time installs (skills.sh)
  • +12 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #205 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rkiding/awesome-finance-skills --skill alphaear-predictor

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs529
repo stars2.8k
Last updatedMarch 29, 2026
Repositoryrkiding/awesome-finance-skills

How do you forecast markets with news sentiment?

Generate news-aware market forecasts and time-series predictions for financial products.

Who is it for?

Quant and fintech developers integrating Kronos forecasts who need news-aware market prediction inside agent or Python pipelines.

Skip if: Developers needing live brokerage execution, compliance-reviewed trading signals, or non-market NLP tasks should skip alphaear-predictor.

When should I use this skill?

User requests finance market time-series forecasting, Kronos predictions, or news-adjusted market outlooks.

What you get

Kronos time-series forecasts, sentiment-adjusted prediction outputs, and documented adjustment prompts.

  • Kronos base forecasts
  • News-adjusted prediction outputs

By the numbers

  • Uses scripts/kronos_predictor.py with KronosPredictorUtility for base forecasts
  • Implements a two-step forecast plus news-sentiment adjustment workflow

Files

SKILL.mdMarkdownGitHub ↗

AlphaEar Predictor Skill

Overview

This skill utilizes the Kronos model (via KronosPredictorUtility) to perform time-series forecasting and adjust predictions based on news sentiment.

Capabilities

1. Forecast Market Trends

1. Forecast Market Trends

Workflow: 1. Generate Base Forecast: Use scripts/kronos_predictor.py (via KronosPredictorUtility) to generate the technical/quantitative forecast. 2. Adjust Forecast (Agentic): Use the Forecast Adjustment Prompt in references/PROMPTS.md to subjectively adjust the numbers based on latest news/logic.

Key Tools:

  • KronosPredictorUtility.get_base_forecast(df, lookback, pred_len, news_text): Returns List[KLinePoint].

Example Usage (Python):

from scripts.utils.kronos_predictor import KronosPredictorUtility
from scripts.utils.database_manager import DatabaseManager

db = DatabaseManager()
predictor = KronosPredictorUtility()

# Forecast
forecast = predictor.predict("600519", horizon="7d")
print(forecast)

Configuration

This skill requires the Kronos model and an embedding model.

1. Kronos Model:

  • Ensure exports/models directory exists in the project root.
  • Place trained news projector weights (e.g., kronos_news_v1.pt) in exports/models/.
  • Or depend on the base model (automatically downloaded).
[!CAUTION]
Model Security: This skill loads model weights from exports/models. We use weights_only=True and only scan for the kronos_news_*.pt pattern. Ensure you only place trusted checkpoints in this directory.

2. Environment Variables:

  • EMBEDDING_MODEL: Path or name of the embedding model (default: sentence-transformers/all-MiniLM-L6-v2).
  • KRONOS_MODEL_PATH: Optional path to override model loading.

Dependencies

  • torch
  • transformers
  • sentence-transformers
  • pandas
  • numpy
  • scikit-learn

Related skills

How it compares

Pick alphaear-predictor over generic data-science skills when you specifically need Kronos time-series output adjusted by finance news sentiment.

FAQ

What model does alphaear-predictor use?

alphaear-predictor uses the Kronos model through KronosPredictorUtility and scripts/kronos_predictor.py to produce quantitative time-series forecasts before optional news-sentiment adjustments.

How does alphaear-predictor adjust forecasts?

alphaear-predictor first generates a base Kronos forecast, then applies a Forecast Adjustment Prompt so the agent revises outputs using current finance news sentiment and reference guidance.

Finance & Tradingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.