paradex_klines
Analyze historical price patterns to identify support/resistance levels, calculate technical indicators, and backtest trading strategies using structured candlestick data from specific timeframes.
Instructions
Analyze historical price patterns for technical analysis and trading decisions.
Use this tool when you need to:
- Perform technical analysis on historical price data
- Identify support and resistance levels from price history
- Calculate indicators like moving averages, RSI, or MACD
- Backtest trading strategies on historical data
- Visualize price action over specific timeframes
Candlestick data is fundamental for most technical analysis and trading decisions,
providing structured price and volume information over time.
Example use cases:
- Identifying chart patterns for potential entries or exits
- Calculating technical indicators for trading signals
- Determining volatility by analyzing price ranges
- Finding significant price levels from historical support/resistance
- Measuring volume patterns to confirm price movements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_unix_ms | Yes | End time in unix milliseconds. | |
market_id | Yes | Market symbol to get klines for. | |
resolution | No | The time resolution of the klines. | |
start_unix_ms | Yes | Start time in unix milliseconds. |
Input Schema (JSON Schema)
{
"properties": {
"end_unix_ms": {
"description": "End time in unix milliseconds.",
"title": "End Unix Ms",
"type": "integer"
},
"market_id": {
"description": "Market symbol to get klines for.",
"title": "Market Id",
"type": "string"
},
"resolution": {
"default": 1,
"description": "The time resolution of the klines.",
"enum": [
1,
3,
5,
15,
30,
60
],
"title": "Resolution",
"type": "integer"
},
"start_unix_ms": {
"description": "Start time in unix milliseconds.",
"title": "Start Unix Ms",
"type": "integer"
}
},
"required": [
"market_id",
"start_unix_ms",
"end_unix_ms"
],
"title": "get_klinesArguments",
"type": "object"
}