Class: RubyTechnicalAnalysis::CommodityChannelIndex

Inherits:
Indicator
  • Object
show all
Defined in:
lib/ruby_technical_analysis/indicators/commodity_channel_index.rb

Overview

Instance Attribute Summary collapse

Attributes inherited from Indicator

#series

Instance Method Summary collapse

Methods inherited from Indicator

call

Constructor Details

#initialize(series: [], period: 20) ⇒ CommodityChannelIndex

Returns a new instance of CommodityChannelIndex.

Parameters:

  • series (Array) (defaults to: [])

    An array of arrays containing high, low, close information, e.g. [[high, low, close], [high, low, close]]

  • period (Integer) (defaults to: 20)

    The number of periods to use in the calculation



10
11
12
13
14
# File 'lib/ruby_technical_analysis/indicators/commodity_channel_index.rb', line 10

def initialize(series: [], period: 20)
  @period = period

  super(series: series)
end

Instance Attribute Details

#periodObject (readonly)

Returns the value of attribute period.



6
7
8
# File 'lib/ruby_technical_analysis/indicators/commodity_channel_index.rb', line 6

def period
  @period
end

Instance Method Details

#callFloat

Returns The current Commodity Channel Index value.

Returns:

  • (Float)

    The current Commodity Channel Index value



17
18
19
# File 'lib/ruby_technical_analysis/indicators/commodity_channel_index.rb', line 17

def call
  calculate_cci
end

#valid?Boolean

Returns Whether or not the object is valid.

Returns:

  • (Boolean)

    Whether or not the object is valid



22
23
24
# File 'lib/ruby_technical_analysis/indicators/commodity_channel_index.rb', line 22

def valid?
  min_size <= series.length
end