Class: Quickfix::FloorPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FloorPrice

Returns a new instance of FloorPrice.



14046
14047
14048
14049
14050
14051
14052
# File 'lib/quickfix_fields.rb', line 14046

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

Class Method Details

.fieldObject



14043
14044
14045
# File 'lib/quickfix_fields.rb', line 14043

def FloorPrice.field
	return 1200
end