top_losers
Identify cryptocurrencies with significant price declines on specified exchanges using Bollinger Band analysis to detect potential oversold conditions and trading opportunities.
Instructions
Return top losers for an exchange and timeframe using bollinger band analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | KUCOIN | |
limit | No | ||
timeframe | No | 15m |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 25,
"title": "Limit",
"type": "integer"
},
"timeframe": {
"default": "15m",
"title": "Timeframe",
"type": "string"
}
},
"type": "object"
}