pub fn render_analytics_dashboard(
price_history: &[PricePoint],
volume_history: &[VolumePoint],
holders: &[TokenHolder],
token_symbol: &str,
chain: &str,
) -> StringExpand description
Renders a combined analytics dashboard with price, volume, and holder charts.
§Arguments
price_history- Price data pointsvolume_history- Volume data pointsholders- Top token holderstoken_symbol- Token symbol for the titlechain- Chain name for the title
§Returns
Returns a formatted string with all charts.