Lean  $LEAN_TAG$
QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement Class Reference

Impairments are considered to be permanent, which is a downward revaluation of fixed assets. If the sum of all estimated future cash flows is less than the carrying value of the asset, then the asset would be considered impaired and would have to be written down to its fair value. Once an asset is written down, it may only be written back up under very few circumstances. Usually the company uses the sum of undiscounted future cash flows to determine if the impairment should occur, and uses the sum of discounted future cash flows to make the impairment judgment. The impairment decision emphasizes on capital assets' future profit collection ability. More...

Inheritance diagram for QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement:
[legend]

Public Member Functions

override IReadOnlyDictionary< string, double > GetPeriodValues ()
 Gets a dictionary of period names and values for the field More...
 
override double GetPeriodValue (string period)
 Gets the value of the field for the requested period More...
 
 ImpairmentOfCapitalAssetsIncomeStatement ()
 Creates a new empty instance More...
 
 ImpairmentOfCapitalAssetsIncomeStatement (ITimeProvider timeProvider, SecurityIdentifier securityIdentifier)
 Creates a new instance for the given time and security More...
 
- Public Member Functions inherited from QuantConnect.Data.Fundamental.MultiPeriodField< T >
virtual bool HasPeriodValue (string period)
 Returns true if the field contains a value for the requested period More...
 
IEnumerable< string > GetPeriodNames ()
 Gets the list of available period names for the field More...
 
bool HasValues ()
 Returns true if the field has at least one value for one period More...
 
override string ToString ()
 Returns a string that represents the current object. More...
 

Public Attributes

double OneMonth => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_OneMonth)
 Gets/sets the OneMonth period value for the field More...
 
double TwoMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_TwoMonths)
 Gets/sets the TwoMonths period value for the field More...
 
double ThreeMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_ThreeMonths)
 Gets/sets the ThreeMonths period value for the field More...
 
double SixMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_SixMonths)
 Gets/sets the SixMonths period value for the field More...
 
double NineMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_NineMonths)
 Gets/sets the NineMonths period value for the field More...
 
double TwelveMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_TwelveMonths)
 Gets/sets the TwelveMonths period value for the field More...
 
override bool HasValue => !BaseFundamentalDataProvider.IsNone(typeof(double), FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_TwelveMonths))
 Returns true if the field contains a value for the default period More...
 
- Public Attributes inherited from QuantConnect.Data.Fundamental.MultiPeriodField< T >
virtual T Value => GetPeriodValues().Select(x => x.Value).DefaultIfEmpty(NoValue).FirstOrDefault()
 Returns the default value for the field More...
 

Protected Attributes

override string DefaultPeriod => "TwelveMonths"
 The default period More...
 

Properties

override double Value [get]
 Returns the default value for the field More...
 
- Properties inherited from QuantConnect.Data.Fundamental.MultiPeriodField< T >
static T NoValue = BaseFundamentalDataProvider.GetDefault<T>() [get]
 No Value More...
 
ITimeProvider TimeProvider [get]
 The time provider instance to use More...
 
abstract string DefaultPeriod [get]
 The default period More...
 
SecurityIdentifier SecurityIdentifier [get, set]
 The target security identifier More...
 
abstract bool HasValue [get]
 Returns true if the field contains a value for the default period More...
 

Additional Inherited Members

- Static Public Member Functions inherited from QuantConnect.Data.Fundamental.MultiPeriodField< T >
static implicit operator T (MultiPeriodField< T > instance)
 Returns the default value for the field More...
 
static implicit operator decimal (MultiPeriodField instance)
 Returns the default value for the field More...
 
- Protected Member Functions inherited from QuantConnect.Data.Fundamental.MultiPeriodField< T >
 MultiPeriodField ()
 Creates an empty instance More...
 
 MultiPeriodField (ITimeProvider timeProvider, SecurityIdentifier securityIdentifier)
 Creates a new instance More...
 
string ConvertPeriod (string period)
 Returns a string that represents the current object. More...
 
 MultiPeriodField ()
 Creates an empty instance More...
 
 MultiPeriodField (ITimeProvider timeProvider, SecurityIdentifier securityIdentifier)
 Creates a new instance More...
 

Detailed Description

Impairments are considered to be permanent, which is a downward revaluation of fixed assets. If the sum of all estimated future cash flows is less than the carrying value of the asset, then the asset would be considered impaired and would have to be written down to its fair value. Once an asset is written down, it may only be written back up under very few circumstances. Usually the company uses the sum of undiscounted future cash flows to determine if the impairment should occur, and uses the sum of discounted future cash flows to make the impairment judgment. The impairment decision emphasizes on capital assets' future profit collection ability.

Definition at line 29 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

Constructor & Destructor Documentation

◆ ImpairmentOfCapitalAssetsIncomeStatement() [1/2]

QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.ImpairmentOfCapitalAssetsIncomeStatement ( )

Creates a new empty instance

Definition at line 120 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ ImpairmentOfCapitalAssetsIncomeStatement() [2/2]

QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.ImpairmentOfCapitalAssetsIncomeStatement ( ITimeProvider  timeProvider,
SecurityIdentifier  securityIdentifier 
)

Creates a new instance for the given time and security

Definition at line 127 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

Member Function Documentation

◆ GetPeriodValues()

override IReadOnlyDictionary<string, double> QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.GetPeriodValues ( )
virtual

Gets a dictionary of period names and values for the field

Returns
The dictionary of period names and values

Implements QuantConnect.Data.Fundamental.MultiPeriodField< T >.

Definition at line 97 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

Here is the call graph for this function:

◆ GetPeriodValue()

override double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.GetPeriodValue ( string  period)
virtual

Gets the value of the field for the requested period

Parameters
periodThe requested period
Returns
The value for the period

Implements QuantConnect.Data.Fundamental.MultiPeriodField< T >.

Member Data Documentation

◆ DefaultPeriod

override string QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.DefaultPeriod => "TwelveMonths"
protected

The default period

Definition at line 34 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ OneMonth

double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.OneMonth => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_OneMonth)

Gets/sets the OneMonth period value for the field

Definition at line 40 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ TwoMonths

double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.TwoMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_TwoMonths)

Gets/sets the TwoMonths period value for the field

Definition at line 46 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ ThreeMonths

double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.ThreeMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_ThreeMonths)

Gets/sets the ThreeMonths period value for the field

Definition at line 52 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ SixMonths

double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.SixMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_SixMonths)

Gets/sets the SixMonths period value for the field

Definition at line 58 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ NineMonths

double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.NineMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_NineMonths)

Gets/sets the NineMonths period value for the field

Definition at line 64 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ TwelveMonths

double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.TwelveMonths => FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_TwelveMonths)

Gets/sets the TwelveMonths period value for the field

Definition at line 70 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

◆ HasValue

override bool QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.HasValue => !BaseFundamentalDataProvider.IsNone(typeof(double), FundamentalService.Get<double>(TimeProvider.GetUtcNow(), SecurityIdentifier, FundamentalProperty.FinancialStatements_IncomeStatement_ImpairmentOfCapitalAssets_TwelveMonths))

Returns true if the field contains a value for the default period

Definition at line 75 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.

Property Documentation

◆ Value

override double QuantConnect.Data.Fundamental.ImpairmentOfCapitalAssetsIncomeStatement.Value
get

Returns the default value for the field

Definition at line 81 of file ImpairmentOfCapitalAssetsIncomeStatement.cs.


The documentation for this class was generated from the following file: