Class: TechnicalAnalysis::DrValue

Inherits:
Object
  • Object
show all
Defined in:
lib/technical_analysis/indicators/dr.rb

Overview

The value class to be returned by calculations

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(date_time: nil, dr: nil) ⇒ DrValue

Returns a new instance of DrValue.



85
86
87
88
# File 'lib/technical_analysis/indicators/dr.rb', line 85

def initialize(date_time: nil, dr: nil)
  @date_time = date_time
  @dr = dr
end

Instance Attribute Details

#date_timeString

Returns the date_time of the obversation as it was provided.

Returns:

  • (String)

    the date_time of the obversation as it was provided



80
81
82
# File 'lib/technical_analysis/indicators/dr.rb', line 80

def date_time
  @date_time
end

#drFloat

Returns the dr calculation value.

Returns:

  • (Float)

    the dr calculation value



83
84
85
# File 'lib/technical_analysis/indicators/dr.rb', line 83

def dr
  @dr
end

Instance Method Details

#to_hashHash

Returns the attributes as a hash.

Returns:

  • (Hash)

    the attributes as a hash



91
92
93
# File 'lib/technical_analysis/indicators/dr.rb', line 91

def to_hash
  { date_time: @date_time, dr: @dr }
end