Ichimoku Cloud signal (tenkan/kijun cross, cloud position, bullish/bearish/neutr
Ichimoku Cloud signal (tenkan/kijun cross, cloud position, bullish/bearish/neutral) for a crypto pair on live Binance.US candles.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
470 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://ichimoku-signal.onrender.com/signal/:pair
| Category | Market data |
|---|---|
| Provider host | ichimoku-signal.onrender.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 470 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"pair": "BTC-USDT"
},
"queryParams": {
"interval": "1h"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"pair": {
"description": "Trading pair, e.g. BTC-USDT or ETH-USDT",
"type": "string"
}
},
"required": [
"pair"
],
"type": "object"
},
"queryParams": {
"properties": {
"interval": {
"description": "Candle interval, e.g. 1h, 4h, 1d. Defaults to 1h.",
"enum": [
"1m",
"3m",
"5m",
"15m",
"30m",
"1h",
"2h",
"4h",
"6h",
"8h",
"12h",
"1d",
"3d",
"1w",
"1M"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"cloud_position": {
"enum": [
"above_cloud",
"below_cloud",
"in_cloud"
],
"type": "string"
},
"interval": {
"type": "string"
},
"kijun_sen": {
"type": "number"
},
"pair": {
"type": "string"
},
"price": {
"type": "number"
},
"senkou_span_a": {
"type": "number"
},
"senkou_span_b": {
"type": "number"
},
"signal": {
"enum": [
"bullish",
"bearish",
"neutral"
],
"type": "string"
},
"tenkan_kijun_cross": {
"enum": [
"bullish_cross",
"bearish_cross",
"flat"
],
"type": "string"
},
"tenkan_sen": {
"type": "number"
},
"timestamp": {
"description": "ISO 8601 UTC",
"type": "string"
}
},
"required": [
"pair",
"interval",
"timestamp",
"price",
"cloud_position",
"tenkan_kijun_cross",
"signal"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}