Skip to main content
openbb Raw financial data retrieval via OpenBB SDK: realtime quotes, historical prices, financial statements, ratios, dividends, earnings dates, analyst estimates, insider trades, technical indicators. Use when: 'get price of AAPL', 'P/E ratio', 'dividend history', 'balance sheet', 'analyst targets', 'revenue numbers', 'financial data'. NOT for scoring/analysis (use equity-research). NOT for news summaries (use finance-news).
설치로 이동 Skills Marketplace 커뮤니티가 만든 AI 스킬을 발견하고 탐색하세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/kesslerio/openbb-cli-tools-openclaw-skill --skill openbb명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Zip 다운로드 다운로드 중...
name openbb description Raw financial data retrieval via OpenBB SDK: realtime quotes, historical prices, financial statements, ratios, dividends, earnings dates, analyst estimates, insider trades, technical indicators. Use when: 'get price of AAPL', 'P/E ratio', 'dividend history', 'balance sheet', 'analyst targets', 'revenue numbers', 'financial data'. NOT for scoring/analysis (use equity-research). NOT for news summaries (use finance-news).
OpenBB Stock Data Skill 📈
Fetch stock market data using OpenBB SDK CLI wrappers. All output is JSON.
Quick Reference
Command Description Example openbb-quoteCurrent price, OHLCV (multi-ticker) openbb-quote AAPLopenbb-get-quoteCurrent price (single ticker) openbb-get-quote AAPLopenbb-ratiosP/E, margins, ROE, debt openbb-ratios MSFTopenbb-financialsIncome/cash flow statements openbb-financials GOOGL income 5openbb-growth-profileRevenue/earnings growth openbb-growth-profile NVDAopenbb-dividendYield, history, safety openbb-dividend JNJopenbb-estimatesAnalyst targets, recommendations openbb-estimates TSLA
Next earnings + EPS history
openbb-qualityQuality score (0-10) openbb-quality META
openbb-valuationFair value estimates openbb-valuation NFLX
openbb-volatilityBeta, Sharpe, drawdown openbb-volatility AMD
openbb-technicalsSMA 50/200, cross signals openbb-technicals SPY
openbb-historicalPrice returns (1y/3y/5y) openbb-historical AAPL 1y
openbb-metricsKey valuation multiples openbb-metrics COST
openbb-ev-ntmEV/NTM revenue openbb-ev-ntm CRM
openbb-profileCompany info openbb-profile DIS
openbb-ownershipInstitutional ownership openbb-ownership AAPL
openbb-cli-fallbackRaw OpenBB CLI passthrough for uncovered cases openbb-cli-fallback --help
Command Selection Policy
Use wrapper scripts first (openbb-quote, openbb-ratios, etc.).
Use openbb-cli-fallback only if wrappers do not cover the requested endpoint/workflow.
Treat CLI output as non-stable text output unless you explicitly control the routine and output format.
Usage Patterns
Single Stock Query
<skill>/scripts/openbb-quote AAPL
<skill>/scripts/openbb-ratios AAPL
Multiple Tickers
<skill>/scripts/openbb-quote AAPL MSFT GOOGL
Specify Provider
<skill>/scripts/openbb-quote AAPL fmp
Financial Statements
<skill>/scripts/openbb-financials AAPL income 5
<skill>/scripts/openbb-financials AAPL cash 3
CLI Fallback (Uncovered Endpoints)
<skill>/scripts/openbb-cli-fallback --file ./my-routine.openbb
Data Providers
Provider Selection All scripts respect the OPENBB_DEFAULT_PROVIDER environment variable. Resolution order:
CLI argument (e.g., openbb-ratios AAPL fmp) — highest priority
OPENBB_DEFAULT_PROVIDER env var — global override
yfinance — default fallback (free, no API key)
Most scripts accept an optional [provider] CLI argument; openbb-financials and openbb-historical currently rely on OPENBB_DEFAULT_PROVIDER only.
yfinance (Default - Free, No API Key) All tools use yfinance by default. Works for quotes, financials, ratios, dividends, estimates, technicals.
FMP (Optional - Enhanced Data) Some tools benefit from FMP for additional data:
Tool Without FMP With FMP openbb-earningsNext earnings date only + Historical EPS with beat/miss openbb-ownershipFalls back to intrinio/sec Full institutional data openbb-estimatesyfinance consensus Enhanced estimates
Asian Market Tickers (.T, .TW, .HK) yfinance supports Asian exchange tickers but can be slow (~9s per call). Use OPENBB_DEFAULT_PROVIDER or per-command provider arg for better latency:
<skill>/scripts/openbb-quote 7203.T fmp
export OPENBB_DEFAULT_PROVIDER=fmp
<skill>/scripts/openbb-quote 7203.T
<skill>/scripts/openbb-ratios 2330.TW
Output Formatting All scripts output JSON. When presenting to users:
For chat channels: Summarize key metrics in natural language, e.g.:
AAPL is trading at $259.48 (+0.46%). P/E: 32.9, Dividend yield: 0.4%. Analysts rate it a BUY with average target $291 (+12% upside).
For detailed analysis: Format as markdown table or structured list.
Common Workflows
Quick Stock Check User: "How's Apple doing?"
<skill>/scripts/openbb-quote AAPL
<skill>/scripts/openbb-ratios AAPL
Dividend Analysis User: "Is JNJ a good dividend stock?"
<skill>/scripts/openbb-dividend JNJ
<skill>/scripts/openbb-financials JNJ cash 3
Earnings Preview User: "When does GOOGL report earnings?"
<skill>/scripts/openbb-earnings GOOGL
<skill>/scripts/openbb-estimates GOOGL
Valuation Check User: "Is NVDA overvalued?"
<skill>/scripts/openbb-valuation NVDA
<skill>/scripts/openbb-ratios NVDA
<skill>/scripts/openbb-growth-profile NVDA
Requirements
Python 3.11+ with OpenBB SDK (pip install openbb)
jq (used by openbb-quote for multi-ticker support)
NixOS: Scripts handle LD_LIBRARY_PATH automatically
Troubleshooting "No such file" errors: Ensure OpenBB venv exists at /home/art/.local/venvs/openbb/
Empty results: Some endpoints need paid FMP subscription. Check the "Data Providers" section.
Timeout: Some queries are slow on first run (SDK initialization). Retry usually works.
Need an endpoint not covered by wrappers: Use openbb-cli-fallback --file <routine.openbb> as temporary fallback, then add a dedicated wrapper for repeat usage.
OpenBB build lock contention (.build.lock):
openbb-quote now retries automatically with exponential backoff when another OpenBB process is building extensions.
Tune behavior with environment variables:
OPENBB_RETRY_MAX_ATTEMPTS (default: 6)
OPENBB_RETRY_BASE_DELAY_SEC (default: 2)