charting
starchild-ai-agent/official-skills
Generate TradingView-style candlestick charts with technical indicators for price visualization and analysis.
What is charting?
Creates professional dark-themed candlestick charts with optional technical indicators (RSI, MACD, Bollinger Bands, moving averages). Use when you need to visualize price action, analyze trends, or display technical analysis for cryptocurrencies, stocks, forex, or commodities.
- Generate candlestick charts with TradingView color palette and dark theme
- Add technical indicators: RSI, MACD, Bollinger Bands, EMA/SMA overlays
- Support multiple asset classes: crypto (CoinGecko), stocks/forex/commodities (Twelve Data)
- Auto-select optimal chart intervals based on time range (hourly for ≤31 days, daily for longer)
- Compare two assets side-by-side with normalized or percentage-based views
- Handle data fetching internally with retry logic and error handling
How to install charting
npx skills add https://github.com/starchild-ai-agent/official-skills --skill charting- COINGECKO_API_KEY environment variable (for crypto charts)
- TWELVEDATA_API_KEY environment variable (for stocks/forex/commodities)
- Python packages: mplfinance, pandas, numpy
How to use charting
- 1.Choose a template from skills/charting/scripts/ based on your chart type (candlestick, with indicators, stock, or comparison)
- 2.Copy the template to scripts/ and customize the config section with your coin/symbol, time range, and desired indicators
- 3.Run the script with bash to generate the PNG file
- 4.Read the output PNG file and display it using markdown image syntax: 
Use cases
- Show Bitcoin price action over the last 30 days with candlestick chart
- Analyze Ethereum uptrend with EMA/SMA overlays
- Check if Solana is overbought using RSI and MACD indicators
- Compare gold (XAU/USD) vs S&P 500 performance over 1 year
- Display full technical picture: BTC candles + Bollinger Bands + RSI + MACD
- Traders analyzing price trends and momentum
- Investors reviewing technical indicators
- Analysts comparing asset performance
- Anyone needing professional price visualizations
charting FAQ
Use chart_template.py for simple candlestick charts, chart_with_indicators.py for RSI/MACD/Bollinger Bands, chart_stock_template.py for stocks/forex/commodities, and chart_comparison_template.py to compare two assets.
Chart scripts fetch data internally. Calling price_chart or OHLC tools floods context with 78KB+ of unnecessary data. Let the chart script handle all data fetching.
CoinGecko OHLC endpoint does not include volume data. Fetch volume separately from the market_chart endpoint or use the Twelve Data API which includes volume.
For backtest equity curves and performance dashboards, add matplotlib charting directly to your backtest script instead of creating a separate chart file—the data is already available.
Templates auto-configure HTTP_PROXY and HTTPS_PROXY if the PROXY_HOST environment variable exists. No manual proxy setup needed.
Full instructions (SKILL.md)
Source of truth, from starchild-ai-agent/official-skills.
name: charting version: 1.0.0 description: Generate TradingView-style candlestick charts with indicators. Use when the user wants a visual chart, price visualization, or technical analysis plot.
metadata: starchild: emoji: "📊" skillKey: charting requires: env: [COINGECKO_API_KEY] install: - kind: pip package: mplfinance - kind: pip package: pandas - kind: pip package: numpy
user-invocable: true disable-model-invocation: false
Charting
⚠️ CRITICAL: DO NOT CALL DATA TOOLS
NEVER call price_chart, get_coin_ohlc_range_by_id, twelvedata_time_series, or ANY market data tools when creating charts. Chart scripts fetch data internally. Calling these tools floods your context with 78KB+ of unnecessary data.
Workflow (4 steps):
- Read template from
skills/charting/scripts/ - Write script to
scripts/ - Run script with
bash - Call
read_fileon the output PNG, then display it using markdown image syntax:
You generate TradingView-quality candlestick charts. Dark theme, clean layout, professional colors. Every chart is a standalone Python script — no internal imports.
Additional Rules:
- Chart scripts run in workspace and cannot import from
core. Userequestslibrary directly, NOTproxied_get(). - Templates include proxy auto-configuration. If
PROXY_HOSTenv var exists, scripts automatically configureHTTP_PROXY/HTTPS_PROXY.
Tools: write_file, bash, read_file
When to Use Which Chart
Simple price action → Candlestick with no indicators. Good for "show me BTC this month." Trend analysis → Add EMA/SMA overlays. Good for "is ETH in an uptrend?" Momentum check → Add RSI or MACD as subplots. Good for "is SOL overbought?" Full technical view → Candles + Bollinger Bands + RSI + MACD. Good for "give me the full picture on BTC." Volume analysis → Requires separate fetch from market_chart endpoint (OHLC endpoint has no volume). Asset comparison → Line chart comparing two assets (BTC vs Gold, ETH vs S&P500, etc.). Use comparison template for normalized or percentage-based comparisons.
How to Build Charts
Read and customize the template scripts in skills/charting/scripts/:
chart_template.py— Baseline candlestick chart with TradingView styling (crypto via CoinGecko)chart_with_indicators.py— RSI, MACD, Bollinger Bands, EMA/SMA examples (crypto via CoinGecko)chart_stock_template.py— Stock/forex chart using Twelve Data APIchart_comparison_template.py— Compare two assets (crypto vs commodity, stock vs crypto, etc.)
Copy the relevant template to scripts/, customize the config section (coin, days, indicators), and run it.
The templates handle all data fetching internally with retry logic and error handling.
Note: These templates are for market data visualization (price charts, indicators). For backtest result charts (equity curves, drawdowns, performance dashboards), add matplotlib charting directly to your backtest script — the data is already there, no need to re-fetch or create a separate file.
TradingView Color Palette
| Element | Color | Hex |
|---|---|---|
| Up candles | Teal | #26a69a |
| Down candles | Red | #ef5350 |
| Background | Dark | #131722 |
| Grid | Subtle dotted | #1e222d |
| Text / axes | Light gray | #d1d4dc |
| MA lines | Blue / Orange | #2196f3 / #ff9800 |
| RSI line | Purple | #b39ddb |
| MACD line | Blue | #2196f3 |
| Signal line | Orange | #ff9800 |
Do not deviate from this palette unless the user asks.
Data Source APIs
CoinGecko (Crypto Only)
Endpoint: https://pro-api.coingecko.com/api/v3/coins/{coin_id}/ohlc/range
Auth: Header x-cg-pro-api-key: {COINGECKO_API_KEY}
Use for: BTC, ETH, SOL, and all cryptocurrencies
Example:
url = f"https://pro-api.coingecko.com/api/v3/coins/{COIN_ID}/ohlc/range"
params = {"vs_currency": "usd", "from": from_ts, "to": now, "interval": "daily"}
headers = {"x-cg-pro-api-key": os.getenv("COINGECKO_API_KEY")}
resp = requests.get(url, params=params, headers=headers)
raw = resp.json() # [[timestamp_ms, open, high, low, close], ...]
Twelve Data (Stocks, Forex, Commodities)
Endpoint: https://api.twelvedata.com/time_series
Auth: Query param apikey={TWELVEDATA_API_KEY}
Use for: Stocks (AAPL, MSFT), Forex (EUR/USD), Commodities (XAU/USD for gold)
Common Symbols:
- Stocks:
AAPL,MSFT,GOOGL,TSLA,SPY - Forex:
EUR/USD,GBP/JPY,USD/CHF - Commodities:
XAU/USD(gold),XAG/USD(silver),CL/USD(crude oil)
Intervals: 1min, 5min, 15min, 30min, 1h, 4h, 1day, 1week, 1month
Example:
url = "https://api.twelvedata.com/time_series"
params = {
"symbol": "XAU/USD", # Gold spot price
"interval": "1day",
"outputsize": 90, # Number of candles
"apikey": os.getenv("TWELVEDATA_API_KEY")
}
resp = requests.get(url, params=params)
data = resp.json()
# data["values"] = [{"datetime": "2024-01-01", "open": "2050.00", "high": "2060.00", ...}, ...]
IMPORTANT: Twelve Data returns data in reverse chronological order (newest first). Always reverse the list before creating a DataFrame:
values = data["values"][::-1] # Reverse to oldest-first
Interval Selection Strategy
The templates now auto-select optimal intervals to minimize data volume while maintaining visual quality:
| Time Range | Auto-Selected Interval | Rationale |
|---|---|---|
| ≤31 days | Hourly | High granularity for short-term analysis |
| 32-365 days | Daily | Sufficient detail, lower data volume |
| >365 days | Daily | Daily is optimal for long-term trends |
Override: Set INTERVAL = "daily" or INTERVAL = "hourly" in the config to override auto-selection.
Key Gotchas
savefigfacecolor: You MUST setfacecolor='#131722'andedgecolor='#131722'insavefig, or the saved PNG reverts to white background.- Title spacing: Prefix titles with
\nto add spacing from the top edge. returnfig=True: Use when you need post-plot customization (price formatting, annotations). When using it, callfig.savefig()manually — don't passsavefigtompf.plot().- No volume in OHLC: CoinGecko OHLC endpoint returns
[timestamp_ms, open, high, low, close]only. Usevolume=Falseor fetch volume separately fromcoin_chartendpoint. - Panel ratios: Set
panel_ratioswhen adding indicator subplots. E.g.,(4, 1, 2)for candles + volume + one indicator,(5, 1, 2, 2)for two indicators. - Figure size: Default
(14, 8). Increase to(14, 10)or(14, 12)when adding subplots.
Rules
- Paths are relative to workspace. Write to
scripts/foo.py, notworkspace/scripts/foo.py. The bash CWD is already workspace. - Always save to
output/directory. Useos.makedirs("output", exist_ok=True). - Always run the script with
bash("python3 scripts/<name>.py")to verify it works. - Always call
read_fileon the generated PNG, then use markdown image syntax to display it: - Scripts must be standalone. Use
requests+os.getenv(). No internal imports, no dotenv. - CRITICAL: Do NOT use proxied_get() in chart scripts. Chart scripts are standalone and run in the workspace - they cannot import from
core.http_client. Always userequests.get()andrequests.post()directly. This is an exception to the PLATFORM.md proxy rules because these scripts execute outside the main Star Child process. The templates demonstrate the correct pattern. - Env vars are inherited.
os.getenv("COINGECKO_API_KEY")works directly. - Default to dark theme unless user asks for light.
- Filename should describe the chart. e.g.
btc_30d_candles.png,eth_7d_rsi_macd.png. - Data sources: Use CoinGecko API for crypto (BTC, ETH, etc). Use Twelve Data API for stocks, forex, and commodities (AAPL, EUR/USD, XAU/USD for gold). Never mix APIs - keep scripts focused on one data source.
- Think about what you're measuring: Before creating a chart, ask yourself: "What question is the user trying to answer?" A normalized chart (all start at 100) shows relative trends but hides actual gain magnitude. If the user wants to know "which gained more" or is comparing investment performance, they need the actual multipliers (e.g., 50x vs 10x), not just lines that look similar.
Troubleshooting
401 Unauthorized Errors
Templates auto-configure proxy from PROXY_HOST/PROXY_PORT env vars. If 401 errors occur:
Check environment:
bash("env | grep -E 'PROXY|REQUESTS_CA'")
Expected vars:
PROXY_HOST/PROXY_PORT- Proxy address (templates use these to set HTTP_PROXY/HTTPS_PROXY)REQUESTS_CA_BUNDLE- Proxy CA cert for SSLCOINGECKO_API_KEY/TWELVEDATA_API_KEY- Can be fake in proxied environments
If vars are missing, this is an environment configuration issue, not a script issue.
Related skills
More from starchild-ai-agent/official-skills and the wider catalog.
coinglass
Crypto derivatives data: funding rates, open interest, liquidations, long/short ratios, and whale tracking.
hyperliquid
Trade perp futures, spot, and RWA on Hyperliquid DEX with up to asset max leverage.
wallet
Multi-chain wallet for EVM and Solana: check balances, send tokens, sign data, and manage policies.
coingecko
Real-time crypto prices, charts, market data, and discovery via CoinGecko API.
Read-only Twitter/X data: tweets, users, search, trends, replies via twitterapi.io.
skill-creator
Scaffold new reusable skills with valid structure, frontmatter, and starter templates.