All indicators accessed via from openalgo import ta:
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionindicator-expertExecute the skills CLI command in your project's root directory to begin installation:
Fetches indicator-expert from marketcalls/openalgo-indicator-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate indicator-expert. Access via /indicator-expert in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
5
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
5
stars
client.history(), client.quotes(), client.depth()), yfinance (US/Global)client.connect(), subscribe_ltp, subscribe_quote, subscribe_depth)template="plotly_dark"dash-bootstrap-components OR Streamlit with st.plotly_chart()@njit(cache=True, nogil=True) + NumPy.env via python-dotenv + find_dotenv() — never hardcode keysta.exrem() after generating raw buy/sell signals. Always .fillna(False) before exrem.template="plotly_dark" with xaxis type="category" for candlesticks.@njit(cache=True, nogil=True) — never fastmath=True (breaks NaN handling).client.connect(), client.subscribe_ltp() / subscribe_quote() / subscribe_depth() for real-time data..env from project root via find_dotenv() — never hardcode API keys.| Market | Data Source | Method | Example Symbols |
|---|---|---|---|
| India (equity) | OpenAlgo | client.history() |
SBIN, RELIANCE, INFY |
| India (index) | OpenAlgo | client.history(exchange="NSE_INDEX") |
NIFTY, BANKNIFTY |
| India (F&O) | OpenAlgo | client.history(exchange="NFO") |
NIFTY30DEC25FUT |
| US/Global | yfinance | yf.download() |
AAPL, MSFT, SPY |
| Method | Purpose | Returns |
|---|---|---|
client.history(symbol, exchange, interval, start_date, end_date) |
OHLCV candles | DataFrame (timestamp, open, high, low, close, volume) |
client.quotes(symbol, exchange) |
Real-time snapshot | Dict (open, high, low, ltp, bid, ask, prev_close, volume) |
client.multiquotes(symbols=[...]) |
Multi-symbol quotes | List of quote dicts |
client.depth(symbol, exchange) |
Market depth (L5) | Dict (bids, asks, ohlc, volume, oi) |
client.intervals() |
Available intervals | Dict (minutes, hours, days, weeks, months) |
client.connect() |
WebSocket connect | None (sets up WS connection) |
client.subscribe_ltp(instruments, callback) |
Live LTP stream | Callback with {symbol, exchange, ltp} |
client.subscribe_quote(instruments, callback) |
Live quote stream | Callback with {symbol, exchange, ohlc, ltp, volume} |
client.subscribe_depth(instruments, callback) |
Live depth stream | Callback with {symbol, exchange, bids, asks} |
All indicators accessed via from openalgo import ta:
ta.sma, ta.ema, ta.wma, ta.dema, ta.tema, ta.hma, ta.vwma, ta.alma, ta.kama, ta.zlema, ta.t3, ta.frama, ta.supertrend, ta.ichimoku, ta.chande_kroll_stop, ta.trima, ta.mcginley, ta.vidya, ta.alligator, ta.ma_envelopes
ta.rsi, ta.macd, ta.stochastic, ta.cci, ta.williams_r, ta.bop, ta.elder_ray, ta.fisher, ta.crsi
ta.atr, ta.bbands, ta.keltner, ta.donchian, ta.chaikin_volatility, ta.natr, ta.rvi, ta.ultimate_oscillator, ta.true_range, ta.massindex, ta.bb_percent, ta.bb_width, ta.chandelier_exit, ta.historical_volatility, ta.ulcer_index, ta.starc
ta.obv, ta.obv_smoothed, ta.vwap, ta.mfi, ta.adl, ta.cmf, ta.emv, ta.force_index, ta.nvi, ta.pvi, ta.volosc, ta.vroc, ta.kvo, ta.pvt
ta.cmo, ta.trix, ta.uo_oscillator, ta.awesome_oscillator, ta.accelerator_oscillator, ta.ppo, ta.po, ta.dpo, ta.aroon_oscillator, ta.stoch_rsi, ta.rvi_oscillator, ta.cho, ta.chop, ta.kst, ta.tsi, ta.vortex, ta.gator_oscillator, ta.stc, ta.coppock, ta.roc
ta.linreg, ta.lrslope, ta.correlation, ta.beta, ta.variance, ta.tsf, ta.median, ta.mode, ta.median_bands
ta.adx, ta.dmi, ta.aroon, ta.pivot_points, ta.sar, ta.williams_fractals, ta.rwi
ta.crossover, ta.crossunder, ta.cross, ta.highest, ta.lowest, ta.change, ta.roc, ta.stdev, ta.exrem, ta.flip, ta.valuewhen, ta.rising, ta.falling
Detailed reference for each topic is in rules/:
| Rule File | Topic |
|---|---|
| indicator-catalog | Complete 100+ indicator reference with signatures and parameters |
| data-fetching | OpenAlgo history/quotes/depth, yfinance, data normalization |
| plotting | Plotly candlestick, overlay, subplot, multi-panel charts |
| custom-indicators | Building custom indicators with Numba + NumPy |
| websocket-feeds | Real-time LTP/Quote/Depth streaming via WebSocket |
| numba-optimization | Numba JIT patterns, cache, nogil, NaN handling |
| dashboard-patterns | Plotly Dash web applications with callbacks |
| streamlit-patterns | Streamlit web applications with sidebar, metrics, plotly charts |
| multi-timeframe | Multi-timeframe indicator analysis |
| signal-generation | Signal generation, cleaning, crossover/crossunder |
| indicator-combinations | Combining indicators for confluence analysis |
| symbol-format | OpenAlgo symbol format, exchange codes, index symbols |
| Template | Path | Description |
|---|---|---|
| EMA Chart | assets/ema_chart/chart.py |
EMA overlay on candlestick |
| RSI Chart | assets/rsi_chart/chart.py |
RSI with overbought/oversold zones |
| MACD Chart | assets/macd_chart/chart.py |
MACD line, signal, histogram |
| Supertrend | assets/supertrend_chart/chart.py |
Supertrend overlay with direction coloring |
| Bollinger | assets/bollinger_chart/chart.py |
Bollinger Bands with squeeze detection |
| Multi-Indicator | assets/multi_indicator/chart.py |
Candlestick + EMA + RSI + MACD + Volume |
| Basic Dashboard | assets/dashboard_basic/app.py |
Single-symbol Plotly Dash app |
| Multi Dashboard | assets/dashboard_multi/app.py |
Multi-symbol multi-timeframe dashboard |
| Streamlit Basic | assets/streamlit_basic/app.py |
Single-symbol Streamlit app |
| Streamlit Multi | assets/streamlit_multi/app.py |
Multi-timeframe Streamlit app |
| Custom Indicator | assets/custom_indicator/template.py |
Numba custom indicator template |
| Live Feed | assets/live_feed/template.py |
WebSocket real-time indicator |
| Scanner | assets/scanner/template.py |
Multi-symbol indicator scanner |
import os
from datetime import datetime, timedelta
from pathlib import Path
import numpy as np
import pandas as pd
import plotly.graph_objects as go
from plotly.subplots import make_subplots
from dotenv import find_dotenv, load_dotenv
from openalgo import api, ta
# --- Config ---
script_dir = Path(__file__).resolve().parent
load_dotenv(find_dotenv(), override=False)
SYMBOL = "SBIN"
EXCHANGE = "NSE"
INTERVAL = "D"
# --- Fetch Data ---
client = api(
api_key=os.getenv("OPENALGO_API_KEY"),
host=os.getenv("OPENALGO_HOST", "http://127.0.0.1:5000"),
)
end_date = datetime.now().date()
start_date = end_date - timedelta(days=365)
df = client.history(
symbol=SYMBOL, exchange=EXCHANGE, interval=INTERVAL,
start_date=start_date.strftime("%Y-%m-%d"),
end_date=end_date.strftime("%Y-%m-%d"),
)
if "timestamp" in df.columns:
df["timestamp"] = pd.to_datetime(df["timestamp"])
df = df.set_index("timestamp")
else:
df.index = pd.to_datetime(df.index)
df = df.sort_index()
if df.index.tz is not None:
df.index = df.index.tz_convert(None)
close = df["close"]
high = df["high"]
low = df["low"]
volume = df["volume"]
# --- Compute Indicators ---
ema_20 = ta.ema(close, 20)
rsi_14 = ta.rsi(close, 14)
# --- Chart ---
fig = make_subplots(
rows=2, cols=1, shared_xaxes=True,
row_heights=[0.7, 0.3], vertical_spacing=0.03,
subplot_titles=[f"{SYMBOL} Price + EMA(20)"Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
erichowens/some_claude_skills
sickn33/antigravity-awesome-skills
erichowens/some_claude_skills
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
We added indicator-expert from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
indicator-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
indicator-expert reduced setup friction for our internal harness; good balance of opinion and flexibility.
Keeps context tight: indicator-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for indicator-expert matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend indicator-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
indicator-expert fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Useful defaults in indicator-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Keeps context tight: indicator-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
indicator-expert reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 38