smithery/neversight

financial-analysis-agent

Create agents for financial analysis, investment research, and portfolio management. Covers financial data processing, risk analysis, and recommendation generation. Use when building investment analysis tools, robo-advisors, portfolio trackers, or financial intelligence systems.

Installation

$ npx skills add smithery/neversight --skill financial-analysis-agent

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,380 B
  • docs SUMMARY.md 311 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Financial Analysis Agent

Build intelligent financial analysis agents that evaluate investments, assess risks, and generate data-driven recommendations.

Financial Data Integration

See [examples/financialdatacollector.py](examples/financialdatacollector.py) for the FinancialDataCollector class that:

  • Integrates with yfinance for stock data
  • Retrieves financial statements (income, balance sheet, cash flow)
  • Fetches key metrics (market cap, PE ratio, dividend yield, etc.)

Financial Analysis Techniques

Technical Analysis

See [examples/technicalanalyzer.py](examples/technicalanalyzer.py) for TechnicalAnalyzer:

  • Moving averages calculation
  • Relative Strength Index (RSI)
  • Support and resistance level identification

Fundamental Analysis

See [examples/fundamentalanalyzer.py](examples/fundamentalanalyzer.py) for FundamentalAnalyzer:

  • Profitability ratios (gross margin, operating margin, net margin, ROA, ROE)
  • Valuation ratios (PE, PB, PEG, price-to-sales)
  • Liquidity ratios (current ratio, quick ratio, debt-to-equity)

Risk Assessment

See [examples/riskanalyzer.py](examples/riskanalyzer.py) for RiskAnalyzer:

  • Volatility calculation
  • Value at Risk (VaR) assessment
  • Sharpe Ratio calculation
  • Company risk assessment

Investment Recommendations

See [examples/investmentrecommender.py](examples/investmentrecommender.py) for InvestmentRecommender:

  • Generates recommendations (Strong Buy, Buy, Hold, Sell, Strong Sell)
  • Calculates investment scores based on technical and fundamental signals
  • Provides confidence levels and risk assessments

Portfolio Management

See [examples/portfoliomanager.py](examples/portfoliomanager.py) for PortfolioManager:

  • Calculate portfolio total value
  • Rebalance portfolio based on target allocations
  • Assess portfolio risk and volatility

Market Intelligence

Build market intelligence capabilities by:

  • Analyzing overall market trends and sector performance
  • Calculating market volatility indices
  • Fetching economic indicators
  • Identifying undervalued, growth, and dividend opportunities

Best Practices

Analysis Quality

  • ✓ Use multiple data sources
  • ✓ Cross-validate findings
  • ✓ Document assumptions
  • ✓ Consider time horizons
  • ✓ Account for fees and taxes

Risk Management

  • ✓ Assess downside risk
  • ✓ Implement stop losses
  • ✓ Diversify appropriately
  • ✓ Position size accordingly
  • ✓ Review regularly

Ethical Considerations

  • ✓ Disclose conflicts of interest
  • ✓ Avoid market manipulation
  • ✓ Base recommendations on analysis
  • ✓ Update recommendations regularly
  • ✓ Acknowledge limitations

Tools & Data Sources

Data APIs

  • yfinance
  • Alpha Vantage
  • IEX Cloud
  • Polygon.io
  • Yahoo Finance

Analysis Libraries

  • pandas
  • NumPy
  • scikit-learn
  • TA-Lib
  • statsmodels

Getting Started

  1. Collect financial data
  2. Perform technical analysis
  3. Analyze fundamentals
  4. Assess risks
  5. Generate recommendations
  6. Monitor positions
  7. Rebalance periodically