Class: Quickfix::StrikePrice
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::StrikePrice
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ StrikePrice
constructor
A new instance of StrikePrice.
Constructor Details
#initialize(data = nil) ⇒ StrikePrice
Returns a new instance of StrikePrice.
6883 6884 6885 6886 6887 6888 6889 |
# File 'lib/quickfix_fields.rb', line 6883 def initialize(data = nil) if( data == nil ) super(202) else super(202, data) end end |
Class Method Details
.field ⇒ Object
6880 6881 6882 |
# File 'lib/quickfix_fields.rb', line 6880 def StrikePrice.field return 202 end |