(fields: Iterator<string>)
| 413 | } |
| 414 | |
| 415 | decodeDeltaNeutral(fields: Iterator<string>): void { |
| 416 | if (this.version >= 20) { |
| 417 | const deltaNeutralContractPresent = decodeBool(fields) |
| 418 | if (deltaNeutralContractPresent) { |
| 419 | this.contract.deltaNeutralContract = new DeltaNeutralContract() |
| 420 | this.contract.deltaNeutralContract.conId = decodeInt(fields) |
| 421 | this.contract.deltaNeutralContract.delta = decodeFloat(fields) |
| 422 | this.contract.deltaNeutralContract.price = decodeFloat(fields) |
| 423 | } |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | decodeAlgoParams(fields: Iterator<string>): void { |
| 428 | if (this.version >= 21) { |
no test coverage detected