Class: TechnicalAnalysis::Mfi
- Defined in:
- lib/technical_analysis/indicators/mfi.rb
Overview
Monoey Flow Index
Class Method Summary collapse
-
.calculate(data, period: 14) ⇒ Array<MfiValue>
Calculates the money flow index (MFI) for the data over the given period en.wikipedia.org/wiki/Money_flow_index.
-
.indicator_name ⇒ String
Returns the name of the technical indicator.
-
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator.
-
.min_data_size(period: 14) ⇒ 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, period: 14) ⇒ Array<MfiValue>
Calculates the money flow index (MFI) for the data over the given period en.wikipedia.org/wiki/Money_flow_index
52 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 |
# File 'lib/technical_analysis/indicators/mfi.rb', line 52 def self.calculate(data, period: 14) period = period.to_i Validation.validate_numeric_data(data, :high, :low, :close, :volume) Validation.validate_length(data, min_data_size(period: period)) Validation.validate_date_time_key(data) data = data.sort_by { |row| row[:date_time] } output = [] prev_typical_price = StockCalculation.typical_price(data.first) raw_money_flows = [] data.shift data.each do |v| typical_price = StockCalculation.typical_price(v) if typical_price < prev_typical_price money_flow = (-1.0 * typical_price * v[:volume]) elsif typical_price > prev_typical_price money_flow = (typical_price * v[:volume]) else money_flow = 0.0 end raw_money_flows << money_flow if raw_money_flows.size == period positive_period_flows = ArrayHelper.sum(raw_money_flows.map { |rmf| rmf.positive? ? rmf : 0 }) negative_period_flows = ArrayHelper.sum(raw_money_flows.map { |rmf| rmf.negative? ? rmf.abs : 0 }) money_flow_ratio = (positive_period_flows / negative_period_flows) mfi = (100.00 - (100.00 / (1.0 + money_flow_ratio))) output << MfiValue.new(date_time: v[:date_time], mfi: mfi) raw_money_flows.shift end prev_typical_price = typical_price 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/mfi.rb', line 15 def self.indicator_name "Money Flow Index" end |
.indicator_symbol ⇒ String
Returns the symbol of the technical indicator
8 9 10 |
# File 'lib/technical_analysis/indicators/mfi.rb', line 8 def self.indicator_symbol "mfi" end |
.min_data_size(period: 14) ⇒ Integer
Calculates the minimum number of observations needed to calculate the technical indicator
41 42 43 |
# File 'lib/technical_analysis/indicators/mfi.rb', line 41 def self.min_data_size(period: 14) period.to_i + 1 end |
.valid_options ⇒ Array
Returns an array of valid keys for options for this technical indicator
22 23 24 |
# File 'lib/technical_analysis/indicators/mfi.rb', line 22 def self. %i(period) end |
.validate_options(options) ⇒ Boolean
Validates the provided options for this technical indicator
31 32 33 |
# File 'lib/technical_analysis/indicators/mfi.rb', line 31 def self.() Validation.(, ) end |