Class: TechnicalAnalysis::DlrValue
- Inherits:
-
Object
- Object
- TechnicalAnalysis::DlrValue
- Defined in:
- lib/technical_analysis/indicators/dlr.rb
Overview
The value class to be returned by calculations
Instance Attribute Summary collapse
-
#date_time ⇒ String
The date_time of the obversation as it was provided.
-
#dlr ⇒ Float
The dlr calculation value.
Instance Method Summary collapse
-
#initialize(date_time: nil, dlr: nil) ⇒ DlrValue
constructor
A new instance of DlrValue.
-
#to_hash ⇒ Hash
The attributes as a hash.
Constructor Details
#initialize(date_time: nil, dlr: nil) ⇒ DlrValue
Returns a new instance of DlrValue.
86 87 88 89 |
# File 'lib/technical_analysis/indicators/dlr.rb', line 86 def initialize(date_time: nil, dlr: nil) @date_time = date_time @dlr = dlr end |
Instance Attribute Details
#date_time ⇒ String
Returns the date_time of the obversation as it was provided.
81 82 83 |
# File 'lib/technical_analysis/indicators/dlr.rb', line 81 def date_time @date_time end |
#dlr ⇒ Float
Returns the dlr calculation value.
84 85 86 |
# File 'lib/technical_analysis/indicators/dlr.rb', line 84 def dlr @dlr end |
Instance Method Details
#to_hash ⇒ Hash
Returns the attributes as a hash.
92 93 94 |
# File 'lib/technical_analysis/indicators/dlr.rb', line 92 def to_hash { date_time: @date_time, dlr: @dlr } end |