Class: Quickfix::AvgPxIndicator

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ AvgPxIndicator

Returns a new instance of AvgPxIndicator.



11134
11135
11136
11137
11138
11139
11140
# File 'lib/quickfix_fields.rb', line 11134

def initialize(data = nil)
  if( data == nil )
    super(819)
  else
    super(819, data)
  end
end

Class Method Details

.fieldObject



11131
11132
11133
# File 'lib/quickfix_fields.rb', line 11131

def AvgPxIndicator.field
  return 819
end