Stock Indicators Python
Stock Indicators for Python. Maintained by @LeeDongGeon1996
Install / Use
npx skills add facioquo/stock-indicators-pythonInstalls into whichever agent you are using.
README
Stock Indicators for Python
Stock Indicators for Python is a PyPI library package that produces financial market technical indicators. Send in historical price quotes and get back desired indicators such as moving averages, Relative Strength Index, Stochastic Oscillator, Parabolic SAR, etc. Nothing more.
It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had trading algorithms, machine learning, and charting systems in mind when originally creating this community library. Stock Indicators for .NET is also available.
Visit our project site for more information:
Getting started
Windows
-
Install .NET SDK (8.0 or newer):
- Download from Microsoft .NET Downloads
- Or using winget:
winget install Microsoft.DotNet.SDK.8 - Verify:
dotnet --info
-
Install the package:
pip install stock-indicators
macOS
-
Install .NET SDK (8.0 or newer):
brew install dotnet-sdk dotnet --info # Verify installation -
Install the package:
pip install stock-indicators
Example usage
from stock_indicators import indicators
# fetch your data
quotes = get_history("MSFT")
# calculate 20-period SMA
results = indicators.get_sma(quotes, 20)
Note: This is a simple example. For a step-by-step guide, see the QuickStart Guide or our documentation site.
Related Skills
valuecell
11.0kValueCell is a community-driven, multi-agent platform for financial applications.
QuantDinger
10.4kAI quantitative trading platform for crypto, stocks, and forex with backtesting, live trading, market data, and multi-agent research.vibe-trading ,trading-agents,ai-trader,ai-trading
beanquery-mcp
50Beancount MCP Server is an experimental implementation that utilizes the Model Context Protocol (MCP) to enable AI assistants to query and analyze Beancount ledger files using Beancount Query Language (BQL) and the beanquery tool.
finance-skills
3.1kA collection of skills for AI financial analysis.

