Class: Quickfix::TriggerPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TriggerPrice

Returns a new instance of TriggerPrice.



14722
14723
14724
14725
14726
14727
14728
# File 'lib/quickfix_fields.rb', line 14722

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