stocks

Provides stock and crypto market data including OHLCV ranges and ticker comparisons via HTTP requests, outputting JSON to stdout.

1|Updated May 16, 2026
One-click install
npx skills add https://github.com/devMoez/titan --skill stocks-devmoez
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stocks
Source: https://github.com/devMoez/titan/tree/main/optional-skills/finance/stocks
Command: npx skills add https://github.com/devMoez/titan --skill stocks-devmoez

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

It helps you quickly answer market-data questions—like what a ticker is trading at now, what it has done over a range, and what multiple symbols are comparing—without needing paid APIs or manual lookups.

Core Features & Use Cases

  • Stock quotes & comparisons: Retrieve current price, change, volume, and 52-week high/low, and compare multiple tickers side-by-side (e.g., AAPL vs MSFT vs TSLA).
  • Ticker search: Find tickers by company name or partial query and get the top matches.
  • Historical performance: Pull OHLCV history for common ranges (1mo, 3mo, 6mo, 1y, 5y) and compute summary stats like min/max/avg and total return percentage.
  • Crypto pricing: Quote crypto tickers by converting symbols into Yahoo’s expected format (e.g., BTC -> BTC-USD).

Quick Start

Ask for a quote by saying: "Get the current quote for AAPL and MSFT using stocks."

Frequently Asked Questions about stocks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get current stock quotes and crypto prices without a paid API?

You can retrieve current stock and crypto quotes without a paid API by using this Skill to fetch real-time prices, change, volume, and 52-week high/low data. It makes direct HTTP requests to Yahoo Finance and outputs JSON to stdout for immediate use.

Can I compare multiple stock tickers side-by-side?

Yes, you can compare multiple stock tickers side-by-side. The Skill retrieves current prices and performance summaries for symbols like AAPL, MSFT, and TSLA, allowing you to evaluate relative performance without manual lookups.

How do I pull OHLCV historical data for a specific date range?

To pull OHLCV historical data, you can request common ranges like 1mo, 3mo, 6mo, 1y, or 5y. The Skill retrieves the historical market data and computes summary statistics including min, max, average, and total return percentage.

What is the best way to search for a stock ticker by company name?

The best way to search for a stock ticker by company name is to use the ticker search function. It finds tickers by company name or partial query and returns the top matches, enabling quick identification of desired symbols.

Does the crypto quote lookup support symbols like BTC directly?

Yes, the crypto quote lookup supports symbols like BTC directly. The Skill automatically converts standard crypto symbols into Yahoo Finance's expected format, such as converting BTC to BTC-USD, to fetch accurate pricing data.

Do I need an ALPHA_VANTAGE_KEY to use the stock market data features?

You do not need an ALPHA_VANTAGE_KEY for basic stock market data features. The Skill uses Python standard library HTTP requests by default, but can optionally backfill missing fundamental data if you provide an ALPHA_VANTAGE_KEY.