getCOTAnalysis
Analyze Commitment of Traders (COT) reports to assess market sentiment, dynamics, and reversals for specific commodities within a chosen date range.
Instructions
Gain in-depth insights into market sentiment with the FMP COT Report Analysis API. Analyze the Commitment of Traders (COT) reports for a specific date range to evaluate market dynamics, sentiment, and potential reversals across various sectors.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Optional start date (YYYY-MM-DD) | |
symbol | Yes | Commodity symbol | |
to | No | Optional end date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Optional start date (YYYY-MM-DD)",
"type": "string"
},
"symbol": {
"description": "Commodity symbol",
"type": "string"
},
"to": {
"description": "Optional end date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}