Class: TechnicalAnalysis::Mi
- Defined in:
- lib/technical_analysis/indicators/mi.rb
Overview
Mass Index
Class Method Summary collapse
-
.calculate(data, ema_period: 9, sum_period: 25) ⇒ Array<MiValue>
Calculates the mass index (MI) for the data over the given period en.wikipedia.org/wiki/Mass_index.
-
.indicator_name ⇒ String
Returns the name of the technical indicator.
-
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator.
-
.min_data_size(ema_period: 9, sum_period: 25) ⇒ Integer
Calculates the minimum number of observations needed to calculate the technical indicator.
-
.valid_options ⇒ Array
Returns an array of valid keys for options for this technical indicator.
-
.validate_options(options) ⇒ Boolean
Validates the provided options for this technical indicator.
Methods inherited from Indicator
Class Method Details
.calculate(data, ema_period: 9, sum_period: 25) ⇒ Array<MiValue>
Calculates the mass index (MI) for the data over the given period en.wikipedia.org/wiki/Mass_index
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/technical_analysis/indicators/mi.rb', line 53 def self.calculate(data, ema_period: 9, sum_period: 25) ema_period = ema_period.to_i sum_period = sum_period.to_i Validation.validate_numeric_data(data, :high, :low) Validation.validate_length(data, min_data_size(ema_period: ema_period, sum_period: sum_period)) Validation.validate_date_time_key(data) data = data.sort_by { |row| row[:date_time] } double_emas = [] high_low_diffs = [] output = [] ratio_of_emas = [] single_emas = [] data.each do |v| high_low_diff = v[:high] - v[:low] high_low_diffs << high_low_diff if high_low_diffs.size == ema_period single_ema = StockCalculation.ema(high_low_diff, high_low_diffs, ema_period, single_emas.last) single_emas << single_ema if single_emas.size == ema_period double_ema = StockCalculation.ema(single_emas.last, single_emas, ema_period, double_emas.last) double_emas << double_ema ratio_of_emas << (single_ema / double_ema) if ratio_of_emas.size == sum_period output << MiValue.new(date_time: v[:date_time], mi: ArrayHelper.sum(ratio_of_emas)) double_emas.shift ratio_of_emas.shift end single_emas.shift end high_low_diffs.shift end end output.sort_by(&:date_time).reverse end |
.indicator_name ⇒ String
Returns the name of the technical indicator
15 16 17 |
# File 'lib/technical_analysis/indicators/mi.rb', line 15 def self.indicator_name "Mass Index" end |
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator
8 9 10 |
# File 'lib/technical_analysis/indicators/mi.rb', line 8 def self.indicator_symbol "mi" end |
.min_data_size(ema_period: 9, sum_period: 25) ⇒ Integer
Calculates the minimum number of observations needed to calculate the technical indicator
41 42 43 |
# File 'lib/technical_analysis/indicators/mi.rb', line 41 def self.min_data_size(ema_period: 9, sum_period: 25) (ema_period.to_i * 2) + sum_period.to_i - 2 end |
.valid_options ⇒ Array
Returns an array of valid keys for options for this technical indicator
22 23 24 |
# File 'lib/technical_analysis/indicators/mi.rb', line 22 def self. i(ema_period sum_period) end |
.validate_options(options) ⇒ Boolean
Validates the provided options for this technical indicator
31 32 33 |
# File 'lib/technical_analysis/indicators/mi.rb', line 31 def self.() Validation.(, ) end |