signal_macd_rsi
Compute combined MACD and RSI signals from price data to identify potential entry and exit points for Binance futures trading.
Instructions
MACD + RSI 组合信号。需要至少 max(slow+signal, rsiInterval)+1 个数据点(默认 35 个)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| values | Yes | 价格数组 | |
| fast | No | MACD 快线 | |
| slow | No | MACD 慢线 | |
| signal | No | MACD 信号线 | |
| rsiInterval | No | RSI 周期 |