Class: Quickfix::PriorSpreadIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriorSpreadIndicator

Returns a new instance of PriorSpreadIndicator.



9873
9874
9875
9876
9877
9878
9879
# File 'lib/quickfix_fields.rb', line 9873

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