Aria_moltbot aria-marketdata

๐Ÿ“ˆ Cryptocurrency market data and analysis for Crypto Trader

install
source ยท Clone the upstream repo
git clone https://github.com/Najia-afk/Aria_moltbot
Claude Code ยท Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Najia-afk/Aria_moltbot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/aria_skills/market_data" ~/.claude/skills/najia-afk-aria-moltbot-aria-marketdata && rm -rf "$T"
manifest: aria_skills/market_data/SKILL.md
source content

aria-marketdata

Cryptocurrency market data and analysis. Get prices, OHLCV data, technical indicators, sentiment analysis, price alerts, and market overviews.

Usage

exec python3 /app/skills/run_skill.py market_data <function> '<json_args>'

Functions

get_price

Get current price for a trading pair.

exec python3 /app/skills/run_skill.py market_data get_price '{"symbol": "BTC/USDT"}'

get_ohlcv

Get OHLCV candlestick data.

exec python3 /app/skills/run_skill.py market_data get_ohlcv '{"symbol": "BTC/USDT"}'

calculate_indicators

Calculate technical indicators.

exec python3 /app/skills/run_skill.py market_data calculate_indicators '{"symbol": "BTC/USDT", "indicators": ["rsi", "macd"]}'

analyze_sentiment

Analyze market sentiment for a symbol.

exec python3 /app/skills/run_skill.py market_data analyze_sentiment '{"symbol": "BTC"}'

set_alert

Set a price alert.

exec python3 /app/skills/run_skill.py market_data set_alert '{"symbol": "BTC/USDT", "price": 50000, "direction": "above"}'

get_market_overview

Get overall market overview.

exec python3 /app/skills/run_skill.py market_data get_market_overview '{}'