Class: Indicator::AutoGen::CdlGravestoneDoji
- Defined in:
- lib/indicator/auto_gen/cdl_gravestone_doji.rb
Overview
Ta-Lib function mapping class Function: ‘CDLGRAVESTONEDOJI’ Description: ‘Gravestone Doji’ This file has been autogenerated - Do Not Edit.
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
-
.arguments ⇒ Object
The list of arguments.
-
.inputs ⇒ Object
The minimum set of inputs required.
-
.outputs ⇒ Object
The outputs generated by this function.
-
.price_input? ⇒ Boolean
Is price data required as an input.
Instance Method Summary collapse
-
#initialize(*args) ⇒ CdlGravestoneDoji
constructor
A new instance of CdlGravestoneDoji.
- #run(*args) ⇒ Object
Methods inherited from Base
Methods included from DataMapper
#default_getter, #default_getter=, #map
Constructor Details
#initialize(*args) ⇒ CdlGravestoneDoji
Returns a new instance of CdlGravestoneDoji.
7 8 9 10 |
# File 'lib/indicator/auto_gen/cdl_gravestone_doji.rb', line 7 def initialize(*args) @func = TaLib::Function.new("CDLGRAVESTONEDOJI") end |
Class Method Details
.arguments ⇒ Object
The list of arguments
18 19 20 |
# File 'lib/indicator/auto_gen/cdl_gravestone_doji.rb', line 18 def self.arguments [ ] end |
.inputs ⇒ Object
The minimum set of inputs required
23 24 25 |
# File 'lib/indicator/auto_gen/cdl_gravestone_doji.rb', line 23 def self.inputs [ :open, :high, :low, :close ] end |
.outputs ⇒ Object
The outputs generated by this function
28 29 30 |
# File 'lib/indicator/auto_gen/cdl_gravestone_doji.rb', line 28 def self.outputs [ :out_integer ] end |
.price_input? ⇒ Boolean
Is price data required as an input
13 14 15 |
# File 'lib/indicator/auto_gen/cdl_gravestone_doji.rb', line 13 def self.price_input? true end |
Instance Method Details
#run(*args) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/indicator/auto_gen/cdl_gravestone_doji.rb', line 32 def run(*args) o, h, l, c, v, len = map_ohlcv(self.class.inputs, *args) @func.in_price(0, o, h, l, c, v, nil) out_integer = Array.new(len) @func.out_int(0, out_integer) @func.call(0, len - 1) out_integer end |