Class: Quickfix::TradePriceCondition

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradePriceCondition

Returns a new instance of TradePriceCondition.



24095
24096
24097
24098
24099
24100
24101
# File 'lib/quickfix_fields.rb', line 24095

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