Class: Quickfix::CurrentDisplayPrice

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) ⇒ CurrentDisplayPrice

Returns a new instance of CurrentDisplayPrice.



77421
77422
77423
77424
77425
77426
77427
# File 'lib/quickfix_fields.rb', line 77421

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

Class Method Details

.fieldObject



77418
77419
77420
# File 'lib/quickfix_fields.rb', line 77418

def CurrentDisplayPrice.field
  return 2828
end