technical-indicators

Installation
SKILL.md

Technical Indicators

Gives SpoonOS agents the ability to perform Technical Analysis (TA). It takes raw price arrays (which can be fetched via other skills) and computes standard indicators like Relative Strength Index (RSI) and Moving Averages.

Quick Start

# Calculate RSI for a price history
indicators = await agent.run_tool(
    "calc_indicators",
    prices=[100, 102, 101, 105, 110, ...]
)
print(f"RSI: {indicators['rsi']}")

Scripts

Installs
2
GitHub Stars
17
First Seen
Aug 3, 2026
technical-indicators — xspoonai/spoon-awesome-skill