get_indicator_macd
Calculate MACD to identify trend direction and momentum changes for trading SOL, ETH, or BTC perpetual futures on Jupiter. Returns MACD line, signal line, and histogram for technical analysis.
Instructions
Calculate MACD (Moving Average Convergence Divergence) - identifies trend direction and momentum. Returns MACD line, signal line, and histogram. Histogram crossing zero indicates trend changes. Common settings: (12,26,9) standard, (5,13,5) fast/scalping, (19,39,9) slow/swing.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset | Yes | The asset symbol | |
| interval | Yes | Candle interval/timeframe | |
| fast_period | Yes | Fast EMA period (2-50). Must be less than slow_period. | |
| slow_period | Yes | Slow EMA period (2-50). Must be greater than fast_period. | |
| signal_period | Yes | Signal line period (2-20). Common: 9 | |
| limit | Yes | Number of data points to return (10-500). Use 10-20 for quick checks, 50-100 for recent trend, 200+ for historical analysis. |