-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathinteractive-brokers.yml
6872 lines (6872 loc) · 246 KB
/
interactive-brokers.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.1
info:
title: Client Portal Web API
description: Client Poral Web API
version: 1.0.0
servers:
- url: https://localhost:5000/v1/api
paths:
/trsrv/secdef:
post:
tags:
- Contract
summary: Secdef by Conid
description: Returns a list of security definitions for the given conids
requestBody:
description: request body
content:
'*/*':
schema:
type: object
properties:
conids:
type: array
items:
type: integer
description: contract id
required: true
responses:
200:
description: returns an array of secdef info
content:
application/json:
schema:
$ref: '#/components/schemas/secdef'
x-codegen-request-body-name: body
/trsrv/secdef/schedule:
get:
tags:
- Contract
summary: Get trading schedule for symbol
description: Returns the trading schedule up to a month for the requested contract
parameters:
- name: assetClass
in: query
description: |
specify the asset class of the contract.
Available values-- Stock: STK, Option: OPT, Future: FUT, Contract For Difference: CFD, Warrant: WAR, Forex: SWP, Mutual Fund: FND, Bond: BND, Inter-Commodity Spreads: ICS
required: true
schema:
type: string
- name: symbol
in: query
description: Underlying Symbol for specified contract, for example 'AAPL'
for US Stock - Apple Inc.
required: true
schema:
type: string
- name: exchange
in: query
description: Native exchange for contract, for example 'NASDAQ' for US Stock
- Apple Inc.
schema:
type: string
- name: exchangeFilter
in: query
description: Response only returns trading schedule for specified exchange
schema:
type: string
responses:
200:
description: Returns an object
content:
application/json:
schema:
type: object
properties:
id:
type: string
description: Exchange parameter id
tradeVenueId:
type: string
description: Reference on a trade venue of given exchange parameter
schedules:
type: array
description: Always contains at least one 'tradingTime' and zero
or more 'sessionTime' tags
items:
type: object
properties:
clearingCycleEndTime:
type: integer
tradingScheduleDate:
type: integer
description: 20000101 stands for any Sat, 20000102 stands
for any Sun, ... 20000107 stands for any Fri. Any other
date stands for itself.
sessions:
type: object
properties:
openingTime:
type: integer
closingTime:
type: integer
prop:
type: string
description: If the whole trading day is considered
LIQUID then the value 'LIQUID' is returned.
description: If the LIQUID hours differs from the total
trading day then a separate 'session' tag is returned.
tradingTimes:
type: object
properties:
openingTime:
type: integer
closingTime:
type: integer
cancelDayOrders:
type: string
description: Returns tradingTime in exchange time zone.
/trsrv/futures:
get:
tags:
- Contract
summary: Security Futures by Symbol
description: Returns a list of non-expired future contracts for given symbol(s)
parameters:
- name: symbols
in: query
description: list of case-sensitive symbols separated by comma
required: true
schema:
type: string
responses:
200:
description: returns an object with symbol and and array of its future contracts
content:
application/json:
schema:
type: object
properties:
symbol:
$ref: '#/components/schemas/futures'
500:
description: error while processing the request
content:
application/json:
schema:
type: object
properties:
error:
type: string
/trsrv/stocks:
get:
tags:
- Contract
summary: Security Stocks by Symbol
description: Returns an object contains all stock contracts for given symbol(s)
parameters:
- name: symbols
in: query
description: list of upper-sensitive symbols separated by comma
required: true
schema:
type: string
responses:
200:
description: returns an object with symbols
content:
application/json:
schema:
type: object
properties:
symbol:
$ref: '#/components/schemas/stocks'
500:
description: error while processing the request
content:
application/json:
schema:
type: object
properties:
error:
type: string
/hmds/history:
get:
tags:
- MarketData (Beta)
summary: Market Data History
description: Using direct to market data farm connection, will provide a list
of historical market data for a given conid
parameters:
- name: conid
in: query
description: contract id
required: true
schema:
type: integer
- name: period
in: query
description: "Time period for history request. \n * min: Minutes\n * h:\
\ Hours\n * d: Days\n * w: Weeks\n * m: Months\n * y: Years\n"
required: true
schema:
type: string
enum:
- min
- h
- d
- w
- m
- y
- name: bar
in: query
description: |
Duration of time for each candlestick bar.
* min: Minutes
* h: Hours
* d: Days
* w: Weeks
* m: Months
schema:
type: string
enum:
- min
- h
- d
- w
- m
- name: outsideRth
in: query
description: For contracts that support it, will determine if history data
includes outside of regular trading hours.
schema:
type: boolean
responses:
200:
description: Valid result
content:
application/json:
schema:
$ref: '#/components/schemas/history-result'
400:
description: Bad request
content: {}
/hmds/scanner:
post:
tags:
- Scanner
summary: Run Scanner (Beta)
description: Using a direct connection to the market data farm, will provide
results to the requested scanner.
requestBody:
description: request body
content:
'*/*':
schema:
type: object
properties:
instrument:
type: string
example: BOND.GOVT
locations:
type: string
example: BOND.GOVT.US
scanCode:
type: string
example: FAR_MATURITY_DATE
secType:
type: string
example: BOND
filters:
type: array
items:
type: object
properties:
code:
type: string
example: bondValidNetBidOrAskOnly
value:
type: object
description: Value can be either an integer, double, boolean
or a string depending upon the type of filter specified
in the code section
example: "true"
required: true
responses:
200:
description: Valid result
content:
application/json:
schema:
$ref: '#/components/schemas/scanner-result'
400:
description: Bad request
content: {}
x-codegen-request-body-name: body
/md/snapshot:
get:
tags:
- Market Data
summary: Market Data Snapshot (Beta)
description: |
Get a snapshot of Market Data for the given conid(s).See response for a list of available fields that can be requested from the fields argument.
Must be connected to a brokerage session before can query snapshot data.
First /snapshot endpoint call for given conid(s) will initiate the market data request, make an additional request to receive field values back.
To receive all available fields the /snapshot endpoint will need to be called several times.
To receive streaming market data the endpoint /ws can be used. Refer to [Streaming WebSocket Data](https://interactivebrokers.github.io/cpwebapi/RealtimeSubscription.html) for details.
parameters:
- name: conids
in: query
description: |
List of conids comma separated. Optional exchange and instrument type can be specified.
* conid: IBKR Contract Identifier
* exchange: Exchange or venue
* instrType: Instrument Type supported values: CS (Stocks), OPT (Options), FUT (Futures), FOP (Future Options), WAR (Warrants), BOND (Bonds), FUND (Mutual Funds), CASH (Forex), CFD (Contract for difference), IND (Index)
required: true
schema:
type: string
enum:
- conid@exchange:instrType
- name: fields
in: query
description: list of fields separated by comma
schema:
type: string
responses:
200:
description: An Object
content:
application/json:
schema:
$ref: '#/components/schemas/market-data'
401:
description: Authentication failed
content: {}
500:
description: System failed
content: {}
/pa/performance:
post:
tags:
- PortfolioAnalyst
summary: Account Performance
description: Returns the performance (MTM) for the given accounts, if more than
one account is passed, the result is consolidated.
requestBody:
description: an array of account ids
content:
'*/*':
schema:
type: object
properties:
acctIds:
type: array
items:
type: string
description: account id
freq:
type: string
description: |
Frequency of cumulative performance data points: 'D'aily, 'M'onthly,'Q'uarterly.
enum:
- D
- M
- Q
required: true
responses:
200:
description: returns an object
content:
application/json:
schema:
$ref: '#/components/schemas/performance'
x-codegen-request-body-name: body
/pa/summary:
post:
tags:
- PortfolioAnalyst
summary: Account Balance's Summary
description: Returns a summary of all account balances for the given accounts,
if more than one account is passed, the result is consolidated.
requestBody:
description: an array of account ids
content:
'*/*':
schema:
type: object
properties:
acctIds:
type: array
items:
type: string
description: account id
required: true
responses:
200:
description: returns an object
content:
application/json:
schema:
$ref: '#/components/schemas/summary'
x-codegen-request-body-name: body
/pa/transactions:
post:
tags:
- PortfolioAnalyst
summary: Position's Transaction History
description: |
transaction history for a given number of conids and accounts.
Types of transactions include dividend payments, buy and sell transactions, transfers.
requestBody:
content:
'*/*':
schema:
type: object
properties:
acctIds:
type: array
items:
type: string
description: account id
conids:
type: array
items:
type: number
description: array only supports one conid at a time.
currency:
type: string
description: optional defaults to USD.
example: USD
days:
type: number
description: optional, default value is 90
example: 7.0
required: true
responses:
200:
description: returns an object
content:
application/json:
schema:
$ref: '#/components/schemas/transactions'
x-codegen-request-body-name: body
/sso/validate:
get:
tags:
- Session
summary: Validate SSO
description: Validates the current session for the SSO user
responses:
200:
description: An Object
content:
application/json:
schema:
type: object
properties:
LOGIN_TYPE:
type: number
description: 1 for Live, 2 for Paper
USER_NAME:
type: string
description: Username
USER_ID:
type: number
description: User ID
expire:
type: number
description: Time in milliseconds until session expires. Caller
needs to call the again to re-validate session
RESULT:
type: boolean
description: true if session was validated; false if not.
AUTH_TIME:
type: number
description: Time of session validation
401:
description: Authentication failed
content: {}
500:
description: System failed
content: {}
/portfolio/accounts:
get:
tags:
- Account
- Portfolio
summary: Portfolio Accounts
description: In non-tiered account structures, returns a list of accounts for
which the user can view position and account information. This endpoint must
be called prior to calling other /portfolio endpoints for those accounts.
For querying a list of accounts which the user can trade, see /iserver/accounts.
For a list of subaccounts in tiered account structures (e.g. financial advisor
or ibroker accounts) see /portfolio/subaccounts.
responses:
200:
description: An array
content:
application/json:
schema:
$ref: '#/components/schemas/accounts'
/portfolio/subaccounts:
get:
tags:
- Account
- Portfolio
summary: List of Sub-Accounts
description: Used in tiered account structures (such as Financial Advisor and
IBroker Accounts) to return a list of up to 100 sub-accounts for which the
user can view position and account-related information. This endpoint must
be called prior to calling other /portfolio endpoints for those sub-accounts.
If you have more than 100 sub-accounts use /portfolio/subaccounts2. To query
a list of accounts the user can trade, see /iserver/accounts.
responses:
200:
description: An array
content:
application/json:
schema:
$ref: '#/components/schemas/account'
/portfolio/subaccounts2/{page}:
get:
tags:
- Account
- Portfolio
summary: List of Sub-Accounts (Large Accounts)
description: Used in tiered account structures (such as Financial Advisor and
IBroker Accounts) to return a list of sub-accounts, paginated up to 20 accounts
per page, for which the user can view position and account-related information.
This endpoint must be called prior to calling other /portfolio endpoints for
those sub-accounts. If you have less than 100 sub-accounts use /portfolio/subaccounts.
To query a list of accounts the user can trade, see /iserver/accounts.
parameters:
- name: page
in: path
required: true
schema:
type: string
default: "0"
responses:
200:
description: An object containing an array
content:
application/json:
schema:
type: object
properties:
metadata:
type: object
properties:
total:
type: number
description: Number of sub-accounts
pageSize:
type: number
description: How many sub-accounts are returned for the page
requested. A max of 20 per page.
pageNume:
type: number
description: Current page number.
subaccounts:
type: array
items:
type: object
properties:
id:
type: string
description: The account identification value
accountId:
type: string
description: The account number
example: U12345678 for Individual Live Accounts, DU12345678
for Individual Paper Accounts
accountVan:
type: string
description: The accountAlias
accountTitle:
type: string
description: Title of the account
displayName:
type: string
description: Whichever value is not null in this priority
enum:
- accountTitle
- accountVan
- accountId
accountAlias:
type: string
description: User customizable account alias. Refer to [Configure
Account Alias](https://guides.interactivebrokers.com/cp/cp.htm#am/settings/accountalias.htm)
for details.
accountStatus:
type: number
description: When the account was opened in unix time.
currency:
type: string
description: Base currency of the account.
enum:
- AUD
- GBP
- CAD
- CNH
- CZK
- DKK
- EUR
- HKD
- HUF
- INR
- ILS
- JPY
- MXN
- NOK
- NZD
- PLN
- RUB
- SGD
- SEK
- CHF
- USD
type:
type: string
description: Account Type
enum:
- INDIVIDUAL
- JOINT
- ORG
- TRUST
- DEMO
tradingType:
type: string
description: UNI - Deprecated property
faclient:
type: boolean
description: If an account is a sub-account to a Financial
Advisor.
clearingStatus:
type: string
description: |
Status of the Account
* O = Open
* P or N = Pending
* A = Abandoned
* R = Rejected
* C = Closed
covestor:
type: boolean
description: Is a Covestor Account
parent:
type: object
properties:
mmc:
type: array
items:
type: string
description: Money Manager Client (MMC) Account
accountId:
type: string
description: Account Number for Money Manager Client
isMParent:
type: boolean
description: Is MM a Parent Account
isMChild:
type: boolean
description: Is MM a Child Account
isMultiplex:
type: boolean
description: Is a Multiplex Account. These are account models with individual account being parent and managed account being child.
desc:
type: string
description: Formatted "accountId - accountAlias"
enum:
- O
- P
- N
- A
- R
- C
description: Account information
/portfolio/{accountId}/meta:
get:
tags:
- Account
- Portfolio
summary: Account Information
description: Account information related to account Id /portfolio/accounts or
/portfolio/subaccounts must be called prior to this endpoint.
parameters:
- name: accountId
in: path
description: account id
required: true
schema:
type: string
responses:
200:
description: An object
content:
application/json:
schema:
$ref: '#/components/schemas/accounts'
/portfolio/{accountId}/allocation:
get:
tags:
- Portfolio
summary: Account Allocation
description: Information about the account's portfolio allocation by Asset Class,
Industry and Category. /portfolio/accounts or /portfolio/subaccounts must
be called prior to this endpoint.
parameters:
- name: accountId
in: path
description: account id
required: true
schema:
type: string
responses:
200:
description: returns an object of three different allocations
content:
application/json:
schema:
$ref: '#/components/schemas/allocation'
/portfolio/allocation:
post:
tags:
- Portfolio
summary: Account Alloction (All Accounts)
description: Similar to /portfolio/{accountId}/allocation but returns a consolidated
view of of all the accounts returned by /portfolio/accounts. /portfolio/accounts
or /portfolio/subaccounts must be called prior to this endpoint.
requestBody:
description: accounts info
content:
'*/*':
schema:
type: object
properties:
acctIds:
type: array
items:
type: string
description: account id
required: true
responses:
200:
description: returns an object of three different allocations
content:
application/json:
schema:
$ref: '#/components/schemas/allocation'
x-codegen-request-body-name: body
/portfolio/{accountId}/positions/{pageId}:
get:
tags:
- Portfolio
summary: Portfolio Positions
description: Returns a list of positions for the given account. The endpoint
supports paging, page's default size is 30 positions. /portfolio/accounts
or /portfolio/subaccounts must be called prior to this endpoint.
parameters:
- name: accountId
in: path
description: account id
required: true
schema:
type: string
- name: pageId
in: path
description: page id
required: true
schema:
type: string
default: "0"
- name: model
in: query
description: optional
schema:
type: string
- name: sort
in: query
description: declare the table to be sorted by which column
schema:
type: string
- name: direction
in: query
description: in which order, a means ascending - d means descending
schema:
type: string
- name: period
in: query
description: period for pnl column, can be 1D, 7D, 1M...
schema:
type: string
responses:
200:
description: returns a list of positions in the portfolio
content:
application/json:
schema:
$ref: '#/components/schemas/position'
/portfolio/{accountId}/position/{conid}:
get:
tags:
- Portfolio
summary: Position by Conid
description: Returns a list of all positions matching the conid. For portfolio
models the conid could be in more than one model, returning an array with
the name of the model it belongs to. /portfolio/accounts or /portfolio/subaccounts
must be called prior to this endpoint.
parameters:
- name: accountId
in: path
description: account id
required: true
schema:
type: string
- name: conid
in: path
description: contract id
required: true
schema:
type: integer
responses:
200:
description: returns a list containing only one position for the conid
content:
application/json:
schema:
$ref: '#/components/schemas/position'
/portfolio/{accountId}/positions/invalidate:
post:
tags:
- Portfolio
summary: Invalidates the backend cache of the Portfolio
parameters:
- name: accountId
in: path
description: account id
required: true
schema:
type: string
responses:
200:
description: Means successful
content:
application/json:
schema:
type: object
/portfolio/{accountId}/summary:
get:
tags:
- Account
- Portfolio
summary: Account Summary
description: Returns information about margin, cash balances and other information
related to specified account. See also /portfolio/{accountId}/ledger. /portfolio/accounts
or /portfolio/subaccounts must be called prior to this endpoint.
parameters:
- name: accountId
in: path
description: account id
required: true
schema:
type: string
responses:
200:
description: returns an object containing account summary. The object contains
multiple properties. A property is sufficed with -c if its provides commodity
value, -s if it provides security value and -c if its UKL segment value
content:
application/json:
schema:
type: object
properties:
accountready:
$ref: '#/components/schemas/summary'
accounttype:
$ref: '#/components/schemas/summary'
accruedcash:
$ref: '#/components/schemas/summary'
accruedcash-c:
$ref: '#/components/schemas/summary'
accruedcash-f:
$ref: '#/components/schemas/summary'
accruedcash-s:
$ref: '#/components/schemas/summary'
accrueddividend:
$ref: '#/components/schemas/summary'
accrueddividend-c:
$ref: '#/components/schemas/summary'
accrueddividend-f:
$ref: '#/components/schemas/summary'
accrueddividend-s:
$ref: '#/components/schemas/summary'
availablefunds:
$ref: '#/components/schemas/summary'
availablefunds-c:
$ref: '#/components/schemas/summary'
availablefunds-f:
$ref: '#/components/schemas/summary'
availablefunds-s:
$ref: '#/components/schemas/summary'
billable:
$ref: '#/components/schemas/summary'
billable-c:
$ref: '#/components/schemas/summary'
billable-f:
$ref: '#/components/schemas/summary'
billable-s:
$ref: '#/components/schemas/summary'
buyingpower:
$ref: '#/components/schemas/summary'
cushion:
$ref: '#/components/schemas/summary'
daytradesremaining:
$ref: '#/components/schemas/summary'
daytradesremainingt+1:
$ref: '#/components/schemas/summary'
daytradesremainingt+2:
$ref: '#/components/schemas/summary'
daytradesremainingt+3:
$ref: '#/components/schemas/summary'
daytradesremainingt+4:
$ref: '#/components/schemas/summary'
equitywithloanvalue:
$ref: '#/components/schemas/summary'
equitywithloanvalue-c:
$ref: '#/components/schemas/summary'
equitywithloanvalue-f:
$ref: '#/components/schemas/summary'
equitywithloanvalue-s:
$ref: '#/components/schemas/summary'
excessliquidity:
$ref: '#/components/schemas/summary'
excessliquidity-c:
$ref: '#/components/schemas/summary'
excessliquidity-f:
$ref: '#/components/schemas/summary'
excessliquidity-s:
$ref: '#/components/schemas/summary'
fullavailablefunds:
$ref: '#/components/schemas/summary'
fullavailablefunds-c:
$ref: '#/components/schemas/summary'
fullavailablefunds-f:
$ref: '#/components/schemas/summary'
fullavailablefunds-s:
$ref: '#/components/schemas/summary'
fullexcessliquidity:
$ref: '#/components/schemas/summary'
fullexcessliquidity-c:
$ref: '#/components/schemas/summary'
fullexcessliquidity-f:
$ref: '#/components/schemas/summary'
fullexcessliquidity-s:
$ref: '#/components/schemas/summary'
fullinitmarginreq:
$ref: '#/components/schemas/summary'
fullinitmarginreq-c:
$ref: '#/components/schemas/summary'
fullinitmarginreq-f:
$ref: '#/components/schemas/summary'
fullinitmarginreq-s:
$ref: '#/components/schemas/summary'
fullmaintmarginreq:
$ref: '#/components/schemas/summary'
fullmaintmarginreq-c:
$ref: '#/components/schemas/summary'
fullmaintmarginreq-f:
$ref: '#/components/schemas/summary'
fullmaintmarginreq-s:
$ref: '#/components/schemas/summary'
grosspositionvalue:
$ref: '#/components/schemas/summary'
grosspositionvalue-c:
$ref: '#/components/schemas/summary'
grosspositionvalue-f:
$ref: '#/components/schemas/summary'
grosspositionvalue-s:
$ref: '#/components/schemas/summary'
guarantee:
$ref: '#/components/schemas/summary'
guarantee-c:
$ref: '#/components/schemas/summary'
guarantee-f:
$ref: '#/components/schemas/summary'
guarantee-s:
$ref: '#/components/schemas/summary'
highestseverity:
$ref: '#/components/schemas/summary'
highestseverity-c:
$ref: '#/components/schemas/summary'
highestseverity-f:
$ref: '#/components/schemas/summary'
highestseverity-s:
$ref: '#/components/schemas/summary'
indianstockhaircut:
$ref: '#/components/schemas/summary'
indianstockhaircut-c:
$ref: '#/components/schemas/summary'