get_ml_rsi
Enhance RSI analysis with machine learning using K-Nearest Neighbors. Adjust overbought/oversold levels dynamically based on historical pattern similarity for improved cryptocurrency trading decisions.
Instructions
Get ML-enhanced RSI using K-Nearest Neighbors algorithm for pattern recognition. Provides adaptive overbought/oversold levels and enhanced RSI values based on historical pattern similarity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category of the instrument | |
featureCount | No | Number of features to use 1-5 (default: 3) | |
interval | Yes | Kline interval | |
knnLookback | No | Historical period for pattern matching (default: 100) | |
knnNeighbors | No | Number of neighbors for KNN algorithm (default: 5) | |
limit | No | Number of data points to return (default: 200) | |
mlWeight | No | ML influence weight 0-1 (default: 0.4) | |
rsiLength | No | RSI calculation period (default: 14) | |
smoothingMethod | No | Smoothing method to apply (default: none) | |
symbol | Yes | Trading pair symbol (e.g., 'BTCUSDT') |