Class: Quickfix::PositionCurrency

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PositionCurrency

Returns a new instance of PositionCurrency.



8456
8457
8458
8459
8460
8461
8462
# File 'lib/quickfix_fields.rb', line 8456

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

Class Method Details

.fieldObject



8453
8454
8455
# File 'lib/quickfix_fields.rb', line 8453

def PositionCurrency.field
	return 1055
end