Class: Quickfix::PrevClosePx

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PrevClosePx

Returns a new instance of PrevClosePx.



2294
2295
2296
2297
2298
2299
2300
# File 'lib/quickfix_fields.rb', line 2294

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

Class Method Details

.fieldObject



2291
2292
2293
# File 'lib/quickfix_fields.rb', line 2291

def PrevClosePx.field
  return 140
end