Class: Quickfix::DayAvgPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DayAvgPx

Returns a new instance of DayAvgPx.



5323
5324
5325
5326
5327
5328
5329
# File 'lib/quickfix_fields.rb', line 5323

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