analyze_doji_pattern
Identify Doji candlestick patterns in Vietnamese stock charts to detect market indecision and potential trend reversals across daily, weekly, or monthly timeframes.
Instructions
Analyze Doji candlestick patterns in stock price charts. Doji patterns indicate market indecision and potential trend reversals. Detects various types of Doji patterns including Standard Doji, Long-legged Doji, Dragonfly Doji, Gravestone Doji, and Four Price Doji.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Stock symbol to analyze (e.g., 'VIC', 'VNM', 'VCB') | |
| period | No | Time period for analysis: '1D' (daily), '1W' (weekly), '1M' (monthly). Default: '1D' | 1D |
| days | No | Number of days to analyze (default: 30, max: 100). Used to detect Doji patterns in historical data. | |
| threshold | No | Threshold for Doji detection as percentage of price range (default: 0.1 = 0.1%). Lower values detect more Doji patterns. |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 30,
"description": "Number of days to analyze (default: 30, max: 100). Used to detect Doji patterns in historical data.",
"type": "number"
},
"period": {
"default": "1D",
"description": "Time period for analysis: '1D' (daily), '1W' (weekly), '1M' (monthly). Default: '1D'",
"enum": [
"1D",
"1W",
"1M"
],
"type": "string"
},
"symbol": {
"description": "Stock symbol to analyze (e.g., 'VIC', 'VNM', 'VCB')",
"type": "string"
},
"threshold": {
"default": 0.1,
"description": "Threshold for Doji detection as percentage of price range (default: 0.1 = 0.1%). Lower values detect more Doji patterns.",
"type": "number"
}
},
"required": [
"symbol"
],
"type": "object"
}