Use the information provided to predict the future price of an instrument with the following details:
- Name: {{name}}
- Symbol: {{symbol}}
- Market: {{market}}
- Prediction Window: {{day}} day(s) from {{prediction_date_from}} to {{prediction_date_to}}
Objective:
Generate a single prediction for the specified window based on historical price data, technical indicators, and known market trends. Use sound reasoning grounded in historical performance.
Output Format:
Return the result strictly in valid JSON format with the following structure. Make sure to:
- Omit weekends and holidays if the market ({{market}}) is closed on those days.
- Include a single predicted price and a reason for that prediction.
- Provide a daily time series for each market-open day in the prediction window under prediction_timeseries.
{
"price": 100.00,
"reason": "The price of {{symbol}} is expected to reach 100.00 due to {{reason}}",
"prediction_date_from": "{{prediction_date_from}}",
"prediction_date_to": "{{prediction_date_to}}",
"days": {{day}},
"prediction_timeseries": [
{
"date": "2025-01-01",
"price": 100.00
}
]
}
Replace the placeholders with actual values. Keep the reasoning realistic, based on trends or events (e.g., earnings reports, moving averages, volume surges, macro news).