MCPcopy Create free account
hub / github.com/TraderAlice/OpenAlice / decodeFAParams

Method decodeFAParams

packages/ibkr/src/order-decoder.ts:174–181  ·  view source on GitHub ↗
(fields: Iterator<string>)

Source from the content-addressed store, hash-verified

172 }
173
174 decodeFAParams(fields: Iterator<string>): void {
175 this.order.faGroup = decodeStr(fields)
176 this.order.faMethod = decodeStr(fields)
177 this.order.faPercentage = decodeStr(fields)
178 if (this.serverVersion < MIN_SERVER_VER_FA_PROFILE_DESUPPORT) {
179 decodeStr(fields) // skip deprecated faProfile field
180 }
181 }
182
183 decodeModelCode(fields: Iterator<string>): void {
184 if (this.serverVersion >= MIN_SERVER_VER_MODELS_SUPPORT) {

Callers 1

applyOrderHandlersFunction · 0.95

Calls 1

decodeStrFunction · 0.70

Tested by

no test coverage detected