Class: TechnicalAnalysis::TsiValue

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

Overview

The value class to be returned by calculations

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(date_time: nil, tsi: nil) ⇒ TsiValue

Returns a new instance of TsiValue.



128
129
130
131
# File 'lib/technical_analysis/indicators/tsi.rb', line 128

def initialize(date_time: nil, tsi: nil)
  @date_time = date_time
  @tsi = tsi
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



123
124
125
# File 'lib/technical_analysis/indicators/tsi.rb', line 123

def date_time
  @date_time
end

#tsiFloat

Returns the tsi calculation value.

Returns:

  • (Float)

    the tsi calculation value



126
127
128
# File 'lib/technical_analysis/indicators/tsi.rb', line 126

def tsi
  @tsi
end

Instance Method Details

#to_hashHash

Returns the attributes as a hash.

Returns:

  • (Hash)

    the attributes as a hash



134
135
136
# File 'lib/technical_analysis/indicators/tsi.rb', line 134

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