pub struct AdjustmentFactor {Show 28 fields
pub security_id: String,
pub event_id: String,
pub event: Event,
pub issuer_name: String,
pub security_type: SecurityType,
pub primary_exchange: Option<String>,
pub exchange: Option<String>,
pub operating_mic: String,
pub symbol: Option<String>,
pub nasdaq_symbol: Option<String>,
pub local_code: Option<String>,
pub local_code_resulting: Option<String>,
pub isin: Option<String>,
pub isin_resulting: Option<String>,
pub us_code: Option<String>,
pub status: AdjustmentStatus,
pub ex_date: Date,
pub factor: f64,
pub close: Option<f64>,
pub currency: Option<String>,
pub sentiment: f64,
pub reason: u32,
pub gross_dividend: Option<f64>,
pub dividend_currency: Option<Currency>,
pub frequency: Option<Frequency>,
pub option: u32,
pub detail: String,
pub ts_created: OffsetDateTime,
}historical only.Expand description
A record in the adjustment factor response.
Fields§
§security_id: StringSecurity level numerical ID. Can be used to link all multiple listings together.
event_id: StringEvent identifier unique at the event level. Links to the corporate actions event_id.
event: EventThe event type.
issuer_name: StringThe issuer name.
security_type: SecurityTypeThe security type.
primary_exchange: Option<String>Exchange code for the primary security.
exchange: Option<String>Exchange code for the listing. Equivalent to the MIC but more stable as MIC might not be available in a timely fashion. Also note that the MIC can change but the exchange will remain the same.
operating_mic: StringMarket Identifier Code (MIC) as an ISO 10383 string.
symbol: Option<String>The query input symbol which matched the record.
nasdaq_symbol: Option<String>Nasdaq Integrated Platform Suffix convention symbol.
local_code: Option<String>Local Code. Usually unique at market level but there are exceptions to this rule. Either an alpha string, or a number.
local_code_resulting: Option<String>Resultant local code when applicable/known.
isin: Option<String>ISIN global level identifier as an ISO 6166 string.
isin_resulting: Option<String>Resultant ISIN when applicable/known.
us_code: Option<String>US domestic CUSIP.
status: AdjustmentStatusThe adjustment status.
ex_date: DateDate from which the event is effective.
factor: f64Adjustment factor to apply.
close: Option<f64>Closing price on the ex_date.
currency: Option<String>Currency for the closing price.
sentiment: f64Market sentiment - the market’s reaction to the event. Simply the previous close divided by today’s open. Only correct if factor calculation requires previous close.
reason: u32Reason/type of event, used to distinguish between different event types.
gross_dividend: Option<f64>The amount of the dividend before any taxes or fees are deducted. This value represents the total dividend declared by the company.
dividend_currency: Option<Currency>The currency in which the dividend is paid.
frequency: Option<Frequency>The frequency at which the dividend is paid.
option: u32The choice or option number associated with the event, often used when shareholders are given multiple options for how they would like to receive the dividend or other corporate action benefit (either cash, or script).
detail: StringA human-readable description of the event.
ts_created: OffsetDateTimeThe timestamp (UTC) the record was added by Databento.
Trait Implementations§
Source§impl Clone for AdjustmentFactor
impl Clone for AdjustmentFactor
Source§fn clone(&self) -> AdjustmentFactor
fn clone(&self) -> AdjustmentFactor
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AdjustmentFactor
impl Debug for AdjustmentFactor
Source§impl<'de> Deserialize<'de> for AdjustmentFactor
impl<'de> Deserialize<'de> for AdjustmentFactor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for AdjustmentFactor
impl PartialEq for AdjustmentFactor
Source§fn eq(&self, other: &AdjustmentFactor) -> bool
fn eq(&self, other: &AdjustmentFactor) -> bool
self and other values to be equal, and is used by ==.