Cursor
get_score_history
Get historical daily Danelfin AI scores for a stock over a date range. Returns a time series of scores useful for backtesting strategies and analysing score persistence or trend. Use when the user asks about score evolution over time or wants to build a strategy based on Danelfin signal history.
Remote danelfin/ai-scores
Remote (network-hosted)
Other tools also called get_score_history?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker symbol to retrieve history for (e.g. AAPL, MSFT, NVDA)"
},
"to_date": {
"type": "string",
"description": "End date in YYYY-MM-DD format (inclusive)"
},
"from_date": {
"type": "string",
"description": "Start date in YYYY-MM-DD format (inclusive)"
}
}
}