name: aria-marketdata description: "๐ Cryptocurrency market data and analysis for Crypto Trader" metadata: {"aria": {"emoji": "๐"}}
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 '{}'