Class: Quickfix::FloorPrice

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

Returns a new instance of FloorPrice.



16022
16023
16024
16025
16026
16027
16028
# File 'lib/quickfix_fields.rb', line 16022

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

Class Method Details

.fieldObject



16019
16020
16021
# File 'lib/quickfix_fields.rb', line 16019

def FloorPrice.field
  return 1200
end