@if (activeReportTab() === 'overview') {
@for (section of report.report_sections; track section.key) {
{{ copy(section.title) }}
{{ copy(section.summary) }}
@if (section.bullets.length) {
@for (bullet of section.bullets; track bullet.en) {
- {{ copy(bullet) }}
}
}
}
}
@if (activeReportTab() === 'trader' && report.ai_research; as ai) {
{{ language() === 'bn' ? 'সুপারিশকৃত অ্যাকশন' : 'RECOMMENDED ACTION' }}
{{ copy(ai.trader_report.action) }}
{{ language() === 'bn' ? 'রেটিং' : 'TRADER RATING' }}
{{ ai.trader_report.rating }}
{{ language() === 'bn' ? 'এক্সিকিউটিভ সামারি' : 'Executive Summary' }}
{{ copy(ai.trader_report.executive_summary) }}
🎯 {{ language() === 'bn' ? 'বিনিয়োগ যুক্তি' : 'Investment Thesis' }}
{{ copy(ai.trader_report.investment_thesis) }}
📥 {{ language() === 'bn' ? 'এন্ট্রি কৌশল' : 'Entry Strategy' }}
{{ copy(ai.trader_report.entry_strategy) }}
🛡️ {{ language() === 'bn' ? 'ঝুঁকি নিয়ন্ত্রণ' : 'Risk Controls' }}
{{ copy(ai.trader_report.risk_controls) }}
⏳ {{ language() === 'bn' ? 'সময়সীমা' : 'Time Horizon' }}
{{ copy(ai.trader_report.time_horizon) }}
⚡ {{ language() === 'bn' ? 'সম্ভায্য অনুঘটক' : 'Potential Catalysts' }}
@for (item of ai.trader_report.catalysts; track item.en) {
- {{ copy(item) }}
}
🚫 {{ language() === 'bn' ? 'যে অবস্থায় মত বদলাবে' : 'Invalidation Conditions' }}
@for (item of ai.trader_report.invalidation_conditions; track item.en) {
- {{ copy(item) }}
}
{{ language() === 'bn' ? 'তথ্যের মান:' : 'Data Quality:' }} {{ copy(ai.data_quality) }}
}
@if (activeReportTab() === 'agents') {
{{ language() === 'bn' ? 'নিচের অংশগুলো মাল্টি-এজেন্ট রান থেকে অপরিবর্তিত রাখা হয়েছে।' : 'These analyst reports are compiled directly by the independent trading subagents.' }}
@if (report.agent_reports.final_trade_decision) {
⚡ {{ language() === 'bn' ? 'চূড়ান্ত ট্রেড সিদ্ধান্ত' : 'Final Trade Decision' }}
{{ report.agent_reports.final_trade_decision }}
}
@if (report.agent_reports.fundamentals_report) {
📊 {{ language() === 'bn' ? 'মৌলিক বিশ্লেষক' : 'Fundamentals Analyst' }}
{{ report.agent_reports.fundamentals_report }}
}
@if (report.agent_reports.market_report) {
📈 {{ language() === 'bn' ? 'বাজার বিশ্লেষক' : 'Market Analyst' }}
{{ report.agent_reports.market_report }}
}
@if (report.agent_reports.news_report) {
📰 {{ language() === 'bn' ? 'সংবাদ বিশ্লেষক' : 'News Analyst' }}
{{ report.agent_reports.news_report }}
}
}
@if (activeReportTab() === 'raw') {
}