Stock Analysis
{% for result in analysis.stock_results %}{{ result.symbol }} - {{ result.metadata.info.name }}
| Metric | Value |
|---|---|
| Latest Price | {{ result.technical_indicators.latest_price|round(2) if result.technical_indicators.latest_price is not none else 'N/A' }} |
| P/E Ratio | {{ result.fundamental_metrics.pe_ratio|round(2) if result.fundamental_metrics.pe_ratio is not none else 'N/A' }} |
| 52 Week High | {{ result.fundamental_metrics.fifty_two_week_high|round(2) if result.fundamental_metrics.fifty_two_week_high is not none else 'N/A' }} |
| 52 Week Low | {{ result.fundamental_metrics.fifty_two_week_low|round(2) if result.fundamental_metrics.fifty_two_week_low is not none else 'N/A' }} |
No stock data available.
{% endfor %}Mutual Fund Analysis
{% for summary in analysis.mutual_fund_summaries %}{{ summary.name }}
| Metric | Value |
|---|---|
| Latest NAV | {{ summary.latest_nav }} as on {{ summary.nav_date }} |
| 1Y CAGR | {{ summary.cagr_1y|default('N/A', true) }}% |
| 3Y CAGR | {{ summary.cagr_3y|default('N/A', true) }}% |
| 5Y CAGR | {{ summary.cagr_5y|default('N/A', true) }}% |
| Expense Ratio | {{ summary.expense_ratio }}% |
No mutual fund data available.
{% endfor %}