Class: Quickfix::CrossedIndicator

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ CrossedIndicator

Returns a new instance of CrossedIndicator.



75198
75199
75200
75201
75202
75203
75204
# File 'lib/quickfix_fields.rb', line 75198

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

Class Method Details

.fieldObject



75195
75196
75197
# File 'lib/quickfix_fields.rb', line 75195

def CrossedIndicator.field
	return 2523
end