ibkr-agent-gateway 0.5.2

Unofficial local-first CLI and MCP gateway for Interactive Brokers workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Fundamentals read models.

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Bounded fundamentals response.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, JsonSchema)]
pub struct FundamentalsReport {
    /// Symbol.
    pub symbol: String,
    /// Report date or broker timestamp.
    pub as_of: Option<String>,
    /// Provider-specific safe ratios/fields.
    pub fields: serde_json::Value,
}