-
Notifications
You must be signed in to change notification settings - Fork 4
/
classIBApi_1_1DefaultEWrapper.html
2424 lines (2303 loc) · 139 KB
/
classIBApi_1_1DefaultEWrapper.html
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
<!-- HTML header for doxygen 1.8.4-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.4"/>
<title>TWS API: DefaultEWrapper Class Reference</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<script>
$(document).ready(function(){
$("ul#tabs li").click(function(e){
if (!$(this).hasClass("active")) {
var tabNum = $(this).index();
var nthChild = tabNum+1;
$("ul#tabs li.active").removeClass("active");
$(this).addClass("active");
$("ul#tab li.active").removeClass("active");
$("ul#tab li:nth-child("+nthChild+")").addClass("active");
}
});
});
</script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="ib_theme.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea" style="background-color:black;">
<table cellspacing="0" cellpadding="0" >
<tbody>
<tr>
<td id="projectlogo"><img alt="Logo" src="nav_iblogo.png"/></td>
<td style="padding: 0 0 0 1em;">
<ul id="tabs"><li class="active">C#</li><li>Java</li><li>VB</li><li>C++</li></ul>
</td>
<td> <div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classIBApi_1_1DefaultEWrapper.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Properties</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Pages</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classIBApi_1_1DefaultEWrapper-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">DefaultEWrapper Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="dynheader">
Inheritance diagram for DefaultEWrapper:</div>
<div class="dyncontent">
<div class="center">
<img src="classIBApi_1_1DefaultEWrapper.png" usemap="#DefaultEWrapper_map" alt=""/>
<map id="DefaultEWrapper_map" name="DefaultEWrapper_map">
<area href="interfaceIBApi_1_1EWrapper.html" title="This interface's methods are used by the TWS/Gateway to communicate with the API client. Every API client application needs to implement this interface in order to handle all the events generated by the TWS/Gateway. Almost every EClientSocket method call will result in at least one event delivered here. " alt="EWrapper" shape="rect" coords="0,0,109,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:aec99a54139f97b8b9d9b3af9607ed5b5"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#aec99a54139f97b8b9d9b3af9607ed5b5">error</a> (Exception e)</td></tr>
<tr class="memdesc:aec99a54139f97b8b9d9b3af9607ed5b5"><td class="mdescLeft"> </td><td class="mdescRight">Handles errors generated within the API itself. If an exception is thrown within the API code it will be notified here. Posible cases include errors while reading the information from the socket or even misshandlings at <a class="el" href="interfaceIBApi_1_1EWrapper.html" title="This interface's methods are used by the TWS/Gateway to communicate with the API client. Every API client application needs to implement this interface in order to handle all the events generated by the TWS/Gateway. Almost every EClientSocket method call will result in at least one event delivered here. ">EWrapper</a>'s implementing class. <a href="#aec99a54139f97b8b9d9b3af9607ed5b5">More...</a><br/></td></tr>
<tr class="separator:aec99a54139f97b8b9d9b3af9607ed5b5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1685cd67a9c67795df4109b2322cd5db"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a1685cd67a9c67795df4109b2322cd5db">error</a> (string str)</td></tr>
<tr class="separator:a1685cd67a9c67795df4109b2322cd5db"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6ce477b50dc1aa3970657bf8eec5e19"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#ac6ce477b50dc1aa3970657bf8eec5e19">error</a> (int id, int errorCode, string errorMsg)</td></tr>
<tr class="memdesc:ac6ce477b50dc1aa3970657bf8eec5e19"><td class="mdescLeft"> </td><td class="mdescRight">Errors sent by the TWS are received here. <a href="#ac6ce477b50dc1aa3970657bf8eec5e19">More...</a><br/></td></tr>
<tr class="separator:ac6ce477b50dc1aa3970657bf8eec5e19"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a306404dabdf19c82850886740ddc7150"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a306404dabdf19c82850886740ddc7150">currentTime</a> (long time)</td></tr>
<tr class="memdesc:a306404dabdf19c82850886740ddc7150"><td class="mdescLeft"> </td><td class="mdescRight">Server's current time This method will receive IB server's system time resulting after the invokation of reqCurrentTime. <a href="#a306404dabdf19c82850886740ddc7150">More...</a><br/></td></tr>
<tr class="separator:a306404dabdf19c82850886740ddc7150"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a55cf1a88c60cbcca5453e6c1706c584d"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a55cf1a88c60cbcca5453e6c1706c584d">tickPrice</a> (int tickerId, int field, double price, int canAutoExecute)</td></tr>
<tr class="memdesc:a55cf1a88c60cbcca5453e6c1706c584d"><td class="mdescLeft"> </td><td class="mdescRight">Market data tick price callback. Handles all price related ticks. <a href="#a55cf1a88c60cbcca5453e6c1706c584d">More...</a><br/></td></tr>
<tr class="separator:a55cf1a88c60cbcca5453e6c1706c584d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af88f62dc507ed5cedbd8cf2add76be0d"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#af88f62dc507ed5cedbd8cf2add76be0d">tickSize</a> (int tickerId, int field, int size)</td></tr>
<tr class="memdesc:af88f62dc507ed5cedbd8cf2add76be0d"><td class="mdescLeft"> </td><td class="mdescRight">Market data tick size callback. Handles all size-related ticks. <a href="#af88f62dc507ed5cedbd8cf2add76be0d">More...</a><br/></td></tr>
<tr class="separator:af88f62dc507ed5cedbd8cf2add76be0d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a517af8f0f37ba589dbd088100d73dcdb"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a517af8f0f37ba589dbd088100d73dcdb">tickString</a> (int tickerId, int field, string value)</td></tr>
<tr class="memdesc:a517af8f0f37ba589dbd088100d73dcdb"><td class="mdescLeft"> </td><td class="mdescRight">Market data callback. <a href="#a517af8f0f37ba589dbd088100d73dcdb">More...</a><br/></td></tr>
<tr class="separator:a517af8f0f37ba589dbd088100d73dcdb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a596b7883dc70f4fd62753f803a15e996"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a596b7883dc70f4fd62753f803a15e996">tickGeneric</a> (int tickerId, int field, double value)</td></tr>
<tr class="memdesc:a596b7883dc70f4fd62753f803a15e996"><td class="mdescLeft"> </td><td class="mdescRight">Market data callback. <a href="#a596b7883dc70f4fd62753f803a15e996">More...</a><br/></td></tr>
<tr class="separator:a596b7883dc70f4fd62753f803a15e996"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5811c19703c8f08643c781c443a6a039"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a5811c19703c8f08643c781c443a6a039">tickEFP</a> (int tickerId, int tickType, double basisPoints, string formattedBasisPoints, double impliedFuture, int holdDays, string futureLastTradeDate, double dividendImpact, double dividendsToLastTradeDate)</td></tr>
<tr class="memdesc:a5811c19703c8f08643c781c443a6a039"><td class="mdescLeft"> </td><td class="mdescRight">Exchange for Physicals. <a href="#a5811c19703c8f08643c781c443a6a039">More...</a><br/></td></tr>
<tr class="separator:a5811c19703c8f08643c781c443a6a039"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a427b903b75cf6329aeb3696f097f097a"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a427b903b75cf6329aeb3696f097f097a">deltaNeutralValidation</a> (int reqId, <a class="el" href="classIBApi_1_1UnderComp.html">UnderComp</a> underComp)</td></tr>
<tr class="memdesc:a427b903b75cf6329aeb3696f097f097a"><td class="mdescLeft"> </td><td class="mdescRight"><ul>
<li>Upon accepting a Delta-Neutral DN RFQ(request for quote), the server sends a <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a427b903b75cf6329aeb3696f097f097a" title="Upon accepting a Delta-Neutral DN RFQ(request for quote), the server sends a deltaNeutralValidation()...">deltaNeutralValidation()</a> message with the <a class="el" href="classIBApi_1_1UnderComp.html" title="Delta-Neutral Underlying Component. ">UnderComp</a> structure. If the delta and price fields are empty in the original request, the confirmation will contain the current values from the server. These values are locked when RFQ is processed and remain locked unitl the RFQ is cancelled. </li>
</ul>
<a href="#a427b903b75cf6329aeb3696f097f097a">More...</a><br/></td></tr>
<tr class="separator:a427b903b75cf6329aeb3696f097f097a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7adc60c46cf38afdbf0efdef805c0b62"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a7adc60c46cf38afdbf0efdef805c0b62">tickOptionComputation</a> (int tickerId, int field, double impliedVolatility, double delta, double optPrice, double pvDividend, double gamma, double vega, double theta, double undPrice)</td></tr>
<tr class="memdesc:a7adc60c46cf38afdbf0efdef805c0b62"><td class="mdescLeft"> </td><td class="mdescRight">Receive's option specific market data. This method is called when the market in an option or its underlier moves. TWS’s option model volatilities, prices, and deltas, along with the present value of dividends expected on that options underlier are received. <a href="#a7adc60c46cf38afdbf0efdef805c0b62">More...</a><br/></td></tr>
<tr class="separator:a7adc60c46cf38afdbf0efdef805c0b62"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abb5f4ad8e08f3d0653731e28f61a9679"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abb5f4ad8e08f3d0653731e28f61a9679"></a>
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#abb5f4ad8e08f3d0653731e28f61a9679">tickSnapshotEnd</a> (int tickerId)</td></tr>
<tr class="memdesc:abb5f4ad8e08f3d0653731e28f61a9679"><td class="mdescLeft"> </td><td class="mdescRight">When requesting market data snapshots, this market will indicate the snapshot reception is finished. <br/></td></tr>
<tr class="separator:abb5f4ad8e08f3d0653731e28f61a9679"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a501683f664357077564b664ca36114d2"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a501683f664357077564b664ca36114d2">nextValidId</a> (int orderId)</td></tr>
<tr class="memdesc:a501683f664357077564b664ca36114d2"><td class="mdescLeft"> </td><td class="mdescRight">Receives next valid order id. <a href="#a501683f664357077564b664ca36114d2">More...</a><br/></td></tr>
<tr class="separator:a501683f664357077564b664ca36114d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5cbc7170b3737daf6dc4225e6a100405"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a5cbc7170b3737daf6dc4225e6a100405">managedAccounts</a> (string accountsList)</td></tr>
<tr class="memdesc:a5cbc7170b3737daf6dc4225e6a100405"><td class="mdescLeft"> </td><td class="mdescRight">Receives a comma-separated string with the managed account ids. <a href="#a5cbc7170b3737daf6dc4225e6a100405">More...</a><br/></td></tr>
<tr class="separator:a5cbc7170b3737daf6dc4225e6a100405"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a978d63aab9bfcdbd0fa99ca54ee9e84d"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a978d63aab9bfcdbd0fa99ca54ee9e84d">connectionClosed</a> ()</td></tr>
<tr class="memdesc:a978d63aab9bfcdbd0fa99ca54ee9e84d"><td class="mdescLeft"> </td><td class="mdescRight">Notifes when the API-TWS connectivity has been closed. <a href="#a978d63aab9bfcdbd0fa99ca54ee9e84d">More...</a><br/></td></tr>
<tr class="separator:a978d63aab9bfcdbd0fa99ca54ee9e84d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:accda91865eaae8a0365fd7208170c3b2"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#accda91865eaae8a0365fd7208170c3b2">accountSummary</a> (int reqId, string account, string tag, string value, string currency)</td></tr>
<tr class="memdesc:accda91865eaae8a0365fd7208170c3b2"><td class="mdescLeft"> </td><td class="mdescRight">Receives the account information. This method will receive the account information just as it appears in the TWS' Account Summary Window. <a href="#accda91865eaae8a0365fd7208170c3b2">More...</a><br/></td></tr>
<tr class="separator:accda91865eaae8a0365fd7208170c3b2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0c15d4680de5cfa3151cb74408de11da"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a0c15d4680de5cfa3151cb74408de11da">accountSummaryEnd</a> (int reqId)</td></tr>
<tr class="memdesc:a0c15d4680de5cfa3151cb74408de11da"><td class="mdescLeft"> </td><td class="mdescRight">notifies when all the accounts' information has ben received. <a href="#a0c15d4680de5cfa3151cb74408de11da">More...</a><br/></td></tr>
<tr class="separator:a0c15d4680de5cfa3151cb74408de11da"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ddf940ff995ec3f0e7d44b57268c890"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6ddf940ff995ec3f0e7d44b57268c890"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>bondContractDetails</b> (int reqId, <a class="el" href="classIBApi_1_1ContractDetails.html">ContractDetails</a> contract)</td></tr>
<tr class="separator:a6ddf940ff995ec3f0e7d44b57268c890"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a58aa477b488af4bc2d3f61bceb2294b5"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a58aa477b488af4bc2d3f61bceb2294b5">updateAccountValue</a> (string key, string value, string currency, string accountName)</td></tr>
<tr class="memdesc:a58aa477b488af4bc2d3f61bceb2294b5"><td class="mdescLeft"> </td><td class="mdescRight">Receives the subscribed account's information. Only one account can be subscribed at a time. <a href="#a58aa477b488af4bc2d3f61bceb2294b5">More...</a><br/></td></tr>
<tr class="separator:a58aa477b488af4bc2d3f61bceb2294b5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a345ccef82272d10c00a93d26929a9224"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a345ccef82272d10c00a93d26929a9224">updatePortfolio</a> (<a class="el" href="classIBApi_1_1Contract.html">Contract</a> contract, double <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a4e22fe9f6167ecf7730ed7dd555a557c">position</a>, double marketPrice, double marketValue, double averageCost, double unrealisedPNL, double realisedPNL, string accountName)</td></tr>
<tr class="memdesc:a345ccef82272d10c00a93d26929a9224"><td class="mdescLeft"> </td><td class="mdescRight">Receives the subscribed account's portfolio. This function will receive only the portfolio of the subscribed account. If the portfolios of all managed accounts are needed, refer to EClientSocket::reqPosition. <a href="#a345ccef82272d10c00a93d26929a9224">More...</a><br/></td></tr>
<tr class="separator:a345ccef82272d10c00a93d26929a9224"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa435f67f71792e8cfc6d785ab35b7f6a"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#aa435f67f71792e8cfc6d785ab35b7f6a">updateAccountTime</a> (string timestamp)</td></tr>
<tr class="memdesc:aa435f67f71792e8cfc6d785ab35b7f6a"><td class="mdescLeft"> </td><td class="mdescRight">Receives the last time on which the account was updated. <a href="#aa435f67f71792e8cfc6d785ab35b7f6a">More...</a><br/></td></tr>
<tr class="separator:aa435f67f71792e8cfc6d785ab35b7f6a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02ed6353a7ec2cdff9547b056042ee4f"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a02ed6353a7ec2cdff9547b056042ee4f">accountDownloadEnd</a> (string account)</td></tr>
<tr class="memdesc:a02ed6353a7ec2cdff9547b056042ee4f"><td class="mdescLeft"> </td><td class="mdescRight">Notifies when all the account's information has finished. <a href="#a02ed6353a7ec2cdff9547b056042ee4f">More...</a><br/></td></tr>
<tr class="separator:a02ed6353a7ec2cdff9547b056042ee4f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7b08413977a5b612746b92d40d49c57"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#ad7b08413977a5b612746b92d40d49c57">orderStatus</a> (int orderId, string status, double filled, double remaining, double avgFillPrice, int permId, int parentId, double lastFillPrice, int clientId, string whyHeld)</td></tr>
<tr class="memdesc:ad7b08413977a5b612746b92d40d49c57"><td class="mdescLeft"> </td><td class="mdescRight">Gives the up-to-date information of an order every time it changes. <a href="#ad7b08413977a5b612746b92d40d49c57">More...</a><br/></td></tr>
<tr class="separator:ad7b08413977a5b612746b92d40d49c57"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac75f8e323c23f95a4342105a0de52add"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#ac75f8e323c23f95a4342105a0de52add">openOrder</a> (int orderId, <a class="el" href="classIBApi_1_1Contract.html">Contract</a> contract, <a class="el" href="classIBApi_1_1Order.html">Order</a> order, <a class="el" href="classIBApi_1_1OrderState.html">OrderState</a> orderState)</td></tr>
<tr class="memdesc:ac75f8e323c23f95a4342105a0de52add"><td class="mdescLeft"> </td><td class="mdescRight">Feeds in currently open orders. <a href="#ac75f8e323c23f95a4342105a0de52add">More...</a><br/></td></tr>
<tr class="separator:ac75f8e323c23f95a4342105a0de52add"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af1dbca40e6715abef53baf260d77affb"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#af1dbca40e6715abef53baf260d77affb">openOrderEnd</a> ()</td></tr>
<tr class="memdesc:af1dbca40e6715abef53baf260d77affb"><td class="mdescLeft"> </td><td class="mdescRight">Notifies the end of the open orders' reception. <a href="#af1dbca40e6715abef53baf260d77affb">More...</a><br/></td></tr>
<tr class="separator:af1dbca40e6715abef53baf260d77affb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a87b4938ba6035aaf70b65f56e606209d"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a87b4938ba6035aaf70b65f56e606209d">contractDetails</a> (int reqId, <a class="el" href="classIBApi_1_1ContractDetails.html">ContractDetails</a> contractDetails)</td></tr>
<tr class="memdesc:a87b4938ba6035aaf70b65f56e606209d"><td class="mdescLeft"> </td><td class="mdescRight">receives the full contract's definitons This method will return all contracts matching the requested via <a class="el" href="classIBApi_1_1EClient.html#ade440c6db838b548594981d800ea5ca9" title="Requests contract information. This method will provide all the contracts matching the contract provi...">EClientSocket::reqContractDetails</a>. For example, one can obtain the whole option chain with it. <a href="#a87b4938ba6035aaf70b65f56e606209d">More...</a><br/></td></tr>
<tr class="separator:a87b4938ba6035aaf70b65f56e606209d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a878f4294638a0dbb373bd2a740d97d64"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a878f4294638a0dbb373bd2a740d97d64">contractDetailsEnd</a> (int reqId)</td></tr>
<tr class="memdesc:a878f4294638a0dbb373bd2a740d97d64"><td class="mdescLeft"> </td><td class="mdescRight">After all contracts matching the request were returned, this method will mark the end of their reception. <a href="#a878f4294638a0dbb373bd2a740d97d64">More...</a><br/></td></tr>
<tr class="separator:a878f4294638a0dbb373bd2a740d97d64"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a991444ddac052d6beb5890b069046d60"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a991444ddac052d6beb5890b069046d60">execDetails</a> (int reqId, <a class="el" href="classIBApi_1_1Contract.html">Contract</a> contract, <a class="el" href="classIBApi_1_1Execution.html">Execution</a> execution)</td></tr>
<tr class="memdesc:a991444ddac052d6beb5890b069046d60"><td class="mdescLeft"> </td><td class="mdescRight">Provides the executions which happened in the last 24 hours. <a href="#a991444ddac052d6beb5890b069046d60">More...</a><br/></td></tr>
<tr class="separator:a991444ddac052d6beb5890b069046d60"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9ec2bb66290f0e9022f6af48804e2aab"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a9ec2bb66290f0e9022f6af48804e2aab">execDetailsEnd</a> (int reqId)</td></tr>
<tr class="memdesc:a9ec2bb66290f0e9022f6af48804e2aab"><td class="mdescLeft"> </td><td class="mdescRight">indicates the end of the <a class="el" href="classIBApi_1_1Execution.html" title="Class describing an order's execution. ">Execution</a> reception. <a href="#a9ec2bb66290f0e9022f6af48804e2aab">More...</a><br/></td></tr>
<tr class="separator:a9ec2bb66290f0e9022f6af48804e2aab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32cc57186bdab454cc4d52c9f32bb168"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a32cc57186bdab454cc4d52c9f32bb168">commissionReport</a> (<a class="el" href="classIBApi_1_1CommissionReport.html">CommissionReport</a> commissionReport)</td></tr>
<tr class="memdesc:a32cc57186bdab454cc4d52c9f32bb168"><td class="mdescLeft"> </td><td class="mdescRight">provides the <a class="el" href="classIBApi_1_1CommissionReport.html" title="class representing the commissions generated by an execution. ">CommissionReport</a> of an <a class="el" href="classIBApi_1_1Execution.html" title="Class describing an order's execution. ">Execution</a> <a href="#a32cc57186bdab454cc4d52c9f32bb168">More...</a><br/></td></tr>
<tr class="separator:a32cc57186bdab454cc4d52c9f32bb168"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0c3d6ec117223c5671ecc010b693585"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#ad0c3d6ec117223c5671ecc010b693585">fundamentalData</a> (int reqId, string data)</td></tr>
<tr class="memdesc:ad0c3d6ec117223c5671ecc010b693585"><td class="mdescLeft"> </td><td class="mdescRight">returns Reuters' Fundamental data <a href="#ad0c3d6ec117223c5671ecc010b693585">More...</a><br/></td></tr>
<tr class="separator:ad0c3d6ec117223c5671ecc010b693585"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac865a37ffcba65d2b204660514c2bee7"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#ac865a37ffcba65d2b204660514c2bee7">historicalData</a> (int reqId, string date, double open, double high, double low, double close, int volume, int count, double WAP, bool hasGaps)</td></tr>
<tr class="memdesc:ac865a37ffcba65d2b204660514c2bee7"><td class="mdescLeft"> </td><td class="mdescRight">returns the requested historical data bars <a href="#ac865a37ffcba65d2b204660514c2bee7">More...</a><br/></td></tr>
<tr class="separator:ac865a37ffcba65d2b204660514c2bee7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af3b8d02045ea9161b9219ea327d6dbb8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af3b8d02045ea9161b9219ea327d6dbb8"></a>
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#af3b8d02045ea9161b9219ea327d6dbb8">historicalDataEnd</a> (int reqId, string start, string end)</td></tr>
<tr class="memdesc:af3b8d02045ea9161b9219ea327d6dbb8"><td class="mdescLeft"> </td><td class="mdescRight">Marks the ending of the historical bars reception. <br/></td></tr>
<tr class="separator:af3b8d02045ea9161b9219ea327d6dbb8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a269f35525f9e50d0f4e0613a9e745ce7"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a269f35525f9e50d0f4e0613a9e745ce7">marketDataType</a> (int reqId, int marketDataType)</td></tr>
<tr class="memdesc:a269f35525f9e50d0f4e0613a9e745ce7"><td class="mdescLeft"> </td><td class="mdescRight">Returns the current market data type (frozen or real time streamed) <a href="#a269f35525f9e50d0f4e0613a9e745ce7">More...</a><br/></td></tr>
<tr class="separator:a269f35525f9e50d0f4e0613a9e745ce7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ecd54eaa7ae4c691c5da0ac83df3d22"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a6ecd54eaa7ae4c691c5da0ac83df3d22">updateMktDepth</a> (int tickerId, int <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a4e22fe9f6167ecf7730ed7dd555a557c">position</a>, int operation, int side, double price, int size)</td></tr>
<tr class="memdesc:a6ecd54eaa7ae4c691c5da0ac83df3d22"><td class="mdescLeft"> </td><td class="mdescRight">Returns the order book. <a href="#a6ecd54eaa7ae4c691c5da0ac83df3d22">More...</a><br/></td></tr>
<tr class="separator:a6ecd54eaa7ae4c691c5da0ac83df3d22"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa0d87d005c4751d7c083200bb494d45c"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#aa0d87d005c4751d7c083200bb494d45c">updateMktDepthL2</a> (int tickerId, int <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a4e22fe9f6167ecf7730ed7dd555a557c">position</a>, string marketMaker, int operation, int side, double price, int size)</td></tr>
<tr class="memdesc:aa0d87d005c4751d7c083200bb494d45c"><td class="mdescLeft"> </td><td class="mdescRight">Returns the order book. <a href="#aa0d87d005c4751d7c083200bb494d45c">More...</a><br/></td></tr>
<tr class="separator:aa0d87d005c4751d7c083200bb494d45c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af99d84f37ec80f690c61c83890a0bbc9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af99d84f37ec80f690c61c83890a0bbc9"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>updateNewsBulletin</b> (int msgId, int msgType, string message, string origExchange)</td></tr>
<tr class="separator:af99d84f37ec80f690c61c83890a0bbc9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e22fe9f6167ecf7730ed7dd555a557c"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a4e22fe9f6167ecf7730ed7dd555a557c">position</a> (string account, <a class="el" href="classIBApi_1_1Contract.html">Contract</a> contract, double pos, double avgCost)</td></tr>
<tr class="memdesc:a4e22fe9f6167ecf7730ed7dd555a557c"><td class="mdescLeft"> </td><td class="mdescRight">provides the portfolio's open positions. <a href="#a4e22fe9f6167ecf7730ed7dd555a557c">More...</a><br/></td></tr>
<tr class="separator:a4e22fe9f6167ecf7730ed7dd555a557c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaba1a36971e6b19e048b0a9b78d1659e"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#aaba1a36971e6b19e048b0a9b78d1659e">positionEnd</a> ()</td></tr>
<tr class="memdesc:aaba1a36971e6b19e048b0a9b78d1659e"><td class="mdescLeft"> </td><td class="mdescRight">Indicates all the positions have been transmitted. <a href="#aaba1a36971e6b19e048b0a9b78d1659e">More...</a><br/></td></tr>
<tr class="separator:aaba1a36971e6b19e048b0a9b78d1659e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a263bb66df2f4e7eba047ceb7fdf33a"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a7a263bb66df2f4e7eba047ceb7fdf33a">realtimeBar</a> (int reqId, long time, double open, double high, double low, double close, long volume, double WAP, int count)</td></tr>
<tr class="memdesc:a7a263bb66df2f4e7eba047ceb7fdf33a"><td class="mdescLeft"> </td><td class="mdescRight">updates the real time 5 seconds bars <a href="#a7a263bb66df2f4e7eba047ceb7fdf33a">More...</a><br/></td></tr>
<tr class="separator:a7a263bb66df2f4e7eba047ceb7fdf33a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad430496f0af6dced626aaaa853bdbbd5"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#ad430496f0af6dced626aaaa853bdbbd5">scannerParameters</a> (string xml)</td></tr>
<tr class="memdesc:ad430496f0af6dced626aaaa853bdbbd5"><td class="mdescLeft"> </td><td class="mdescRight">provides the xml-formatted parameters available to create a market scanner. <a href="#ad430496f0af6dced626aaaa853bdbbd5">More...</a><br/></td></tr>
<tr class="separator:ad430496f0af6dced626aaaa853bdbbd5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba831bd7bc4744c1cf0a5141c74d77ad"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#aba831bd7bc4744c1cf0a5141c74d77ad">scannerData</a> (int reqId, int rank, <a class="el" href="classIBApi_1_1ContractDetails.html">ContractDetails</a> <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a87b4938ba6035aaf70b65f56e606209d">contractDetails</a>, string distance, string benchmark, string projection, string legsStr)</td></tr>
<tr class="memdesc:aba831bd7bc4744c1cf0a5141c74d77ad"><td class="mdescLeft"> </td><td class="mdescRight">provides the data resulting from the market scanner request. <a href="#aba831bd7bc4744c1cf0a5141c74d77ad">More...</a><br/></td></tr>
<tr class="separator:aba831bd7bc4744c1cf0a5141c74d77ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4870373c52ae2e9f847ec1ea7897f462"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a4870373c52ae2e9f847ec1ea7897f462">scannerDataEnd</a> (int reqId)</td></tr>
<tr class="memdesc:a4870373c52ae2e9f847ec1ea7897f462"><td class="mdescLeft"> </td><td class="mdescRight">Indicates the scanner data reception has terminated. <a href="#a4870373c52ae2e9f847ec1ea7897f462">More...</a><br/></td></tr>
<tr class="separator:a4870373c52ae2e9f847ec1ea7897f462"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6342244c6a207ad37e31232546ec6c73"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a6342244c6a207ad37e31232546ec6c73">receiveFA</a> (int faDataType, string faXmlData)</td></tr>
<tr class="memdesc:a6342244c6a207ad37e31232546ec6c73"><td class="mdescLeft"> </td><td class="mdescRight">receives the Financial Advisor's configuration available in the TWS <a href="#a6342244c6a207ad37e31232546ec6c73">More...</a><br/></td></tr>
<tr class="separator:a6342244c6a207ad37e31232546ec6c73"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a45a6ddfc7b473e272ba864b99d696120"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a45a6ddfc7b473e272ba864b99d696120"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>verifyMessageAPI</b> (string apiData)</td></tr>
<tr class="separator:a45a6ddfc7b473e272ba864b99d696120"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7994bfcb2de3f0a71b80d066a4cb9695"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7994bfcb2de3f0a71b80d066a4cb9695"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>verifyCompleted</b> (bool isSuccessful, string errorText)</td></tr>
<tr class="separator:a7994bfcb2de3f0a71b80d066a4cb9695"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ab8f856db08339ab06951bdae6f51a1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2ab8f856db08339ab06951bdae6f51a1"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>verifyAndAuthMessageAPI</b> (string apiData, string xyzChallenge)</td></tr>
<tr class="separator:a2ab8f856db08339ab06951bdae6f51a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad301a658fffb6c96e677cd99578b793c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad301a658fffb6c96e677cd99578b793c"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>verifyAndAuthCompleted</b> (bool isSuccessful, string errorText)</td></tr>
<tr class="separator:ad301a658fffb6c96e677cd99578b793c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af9172f5aa9a6f70f032d8cbb880c25ed"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af9172f5aa9a6f70f032d8cbb880c25ed"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>displayGroupList</b> (int reqId, string groups)</td></tr>
<tr class="separator:af9172f5aa9a6f70f032d8cbb880c25ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a993922764b3501eaf4fd3a77d1a186f1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a993922764b3501eaf4fd3a77d1a186f1"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>displayGroupUpdated</b> (int reqId, string contractInfo)</td></tr>
<tr class="separator:a993922764b3501eaf4fd3a77d1a186f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af9a662ffc740646d319356f65725f15f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af9a662ffc740646d319356f65725f15f"></a>
void </td><td class="memItemRight" valign="bottom"><b>connectAck</b> ()</td></tr>
<tr class="separator:af9a662ffc740646d319356f65725f15f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_interfaceIBApi_1_1EWrapper"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_interfaceIBApi_1_1EWrapper')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="interfaceIBApi_1_1EWrapper.html">EWrapper</a></td></tr>
<tr class="memitem:a3286ab81957d224345888153bce59082 inherit pub_methods_interfaceIBApi_1_1EWrapper"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceIBApi_1_1EWrapper.html#a3286ab81957d224345888153bce59082">updateNewsBulletin</a> (int msgId, int msgType, String message, String origExchange)</td></tr>
<tr class="memdesc:a3286ab81957d224345888153bce59082 inherit pub_methods_interfaceIBApi_1_1EWrapper"><td class="mdescLeft"> </td><td class="mdescRight">provides IB's bulletins <a href="#a3286ab81957d224345888153bce59082">More...</a><br/></td></tr>
<tr class="separator:a3286ab81957d224345888153bce59082 inherit pub_methods_interfaceIBApi_1_1EWrapper"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a02ed6353a7ec2cdff9547b056042ee4f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void accountDownloadEnd </td>
<td>(</td>
<td class="paramtype">string </td>
<td class="paramname"><em>account</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Notifies when all the account's information has finished. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">account</td><td>the account's id </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#aa435f67f71792e8cfc6d785ab35b7f6a" title="Receives the last time on which the account was updated. ">updateAccountTime</a>, <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a345ccef82272d10c00a93d26929a9224" title="Receives the subscribed account's portfolio. This function will receive only the portfolio of the sub...">updatePortfolio</a>, <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a58aa477b488af4bc2d3f61bceb2294b5" title="Receives the subscribed account's information. Only one account can be subscribed at a time...">updateAccountValue</a>, <a class="el" href="classIBApi_1_1EClient.html#aea1b0d9b6b85a4e0b18caf13a51f837f" title="Subscribes to an specific account's information and portfolio Through this method, a single account's subscription can be started/stopped. As a result from the subscription, the account's information, portfolio and last update time will be received at EWrapper::updateAccountValue, EWrapper::updateAccountPortfolio, EWrapper::updateAccountTime respectively. Only one account can be subscribed at a time. A second subscription request for another account when the previous one is still active will cause the first one to be canceled in favour of the second one. Consider user reqPositions if you want to retrieve all your accounts' portfolios directly. ">EClientSocket::reqAccountUpdates</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a05f35c1d896eeee696487d483110354f">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="accda91865eaae8a0365fd7208170c3b2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void accountSummary </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>account</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>tag</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>value</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>currency</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Receives the account information. This method will receive the account information just as it appears in the TWS' Account Summary Window. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's unique identifier. </td></tr>
<tr><td class="paramname">account</td><td>the account id </td></tr>
<tr><td class="paramname">tag</td><td>the account's attribute being received. </td></tr>
<tr><td class="paramname">value</td><td>the account's attribute's value. </td></tr>
<tr><td class="paramname">currency</td><td>the currency on which the value is expressed. </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a0c15d4680de5cfa3151cb74408de11da" title="notifies when all the accounts' information has ben received. ">accountSummaryEnd</a>, <a class="el" href="classIBApi_1_1EClient.html#a3e0d55d36cd416639b97ee6e47a86fe9" title="Requests a specific account's summary. This method will subscribe to the account summary as presented...">EClientSocket::reqAccountSummary</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#acd761f48771f61dd0fb9e9a7d88d4f04">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a0c15d4680de5cfa3151cb74408de11da"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void accountSummaryEnd </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>notifies when all the accounts' information has ben received. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's identifier. </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#accda91865eaae8a0365fd7208170c3b2" title="Receives the account information. This method will receive the account information just as it appears...">accountSummary</a>, <a class="el" href="classIBApi_1_1EClient.html#a3e0d55d36cd416639b97ee6e47a86fe9" title="Requests a specific account's summary. This method will subscribe to the account summary as presented...">EClientSocket::reqAccountSummary</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a12bf8483858526077140c950e80f2995">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a32cc57186bdab454cc4d52c9f32bb168"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void commissionReport </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classIBApi_1_1CommissionReport.html">CommissionReport</a> </td>
<td class="paramname"><em>commissionReport</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>provides the <a class="el" href="classIBApi_1_1CommissionReport.html" title="class representing the commissions generated by an execution. ">CommissionReport</a> of an <a class="el" href="classIBApi_1_1Execution.html" title="Class describing an order's execution. ">Execution</a> </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a991444ddac052d6beb5890b069046d60" title="Provides the executions which happened in the last 24 hours. ">execDetails</a>, <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a9ec2bb66290f0e9022f6af48804e2aab" title="indicates the end of the Execution reception. ">execDetailsEnd</a>, <a class="el" href="classIBApi_1_1EClient.html#ae17dbb7d7c37591de983b2b74af2d9b5" title="Requests all the day's executions matching the filter. Only the current day's executions can be retri...">EClientSocket::reqExecutions</a>, <a class="el" href="classIBApi_1_1CommissionReport.html" title="class representing the commissions generated by an execution. ">CommissionReport</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a7ebfc18d5d03189ab5bf895db4a1a204">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a978d63aab9bfcdbd0fa99ca54ee9e84d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void connectionClosed </td>
<td>(</td>
<td class="paramname">)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Notifes when the API-TWS connectivity has been closed. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1EClient.html#aeb253ccdaf724eac22e8f75a0f19f421" title="Closes the socket connection and terminates its thread. ">EClientSocket::eDisconnect</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a9b0f099dc421e5a48ec290cab67a8ad1">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a87b4938ba6035aaf70b65f56e606209d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void contractDetails </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classIBApi_1_1ContractDetails.html">ContractDetails</a> </td>
<td class="paramname"><em>contractDetails</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>receives the full contract's definitons This method will return all contracts matching the requested via <a class="el" href="classIBApi_1_1EClient.html#ade440c6db838b548594981d800ea5ca9" title="Requests contract information. This method will provide all the contracts matching the contract provi...">EClientSocket::reqContractDetails</a>. For example, one can obtain the whole option chain with it. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the unique request identifier </td></tr>
<tr><td class="paramname">contractDetails</td><td>the instrument's complete definition. </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a878f4294638a0dbb373bd2a740d97d64" title="After all contracts matching the request were returned, this method will mark the end of their recept...">contractDetailsEnd</a>, <a class="el" href="classIBApi_1_1EClient.html#ade440c6db838b548594981d800ea5ca9" title="Requests contract information. This method will provide all the contracts matching the contract provi...">EClientSocket::reqContractDetails</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a1b767810613c700b5bb1056a836da0bc">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a878f4294638a0dbb373bd2a740d97d64"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void contractDetailsEnd </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>After all contracts matching the request were returned, this method will mark the end of their reception. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's identifier </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a87b4938ba6035aaf70b65f56e606209d" title="receives the full contract's definitons This method will return all contracts matching the requested ...">contractDetails</a>, <a class="el" href="classIBApi_1_1EClient.html#ade440c6db838b548594981d800ea5ca9" title="Requests contract information. This method will provide all the contracts matching the contract provi...">EClientSocket::reqContractDetails</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a4e9466339bac7149c2fdb48cda0dd088">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a306404dabdf19c82850886740ddc7150"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void currentTime </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>time</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Server's current time This method will receive IB server's system time resulting after the invokation of reqCurrentTime. </p>
<dl class="section see"><dt>See Also</dt><dd>reqCurrentTime() </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a7004c6c027c90ecdc1f5c68759e37fd2">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a427b903b75cf6329aeb3696f097f097a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void deltaNeutralValidation </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classIBApi_1_1UnderComp.html">UnderComp</a> </td>
<td class="paramname"><em>underComp</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p><ul>
<li>Upon accepting a Delta-Neutral DN RFQ(request for quote), the server sends a <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a427b903b75cf6329aeb3696f097f097a" title="Upon accepting a Delta-Neutral DN RFQ(request for quote), the server sends a deltaNeutralValidation()...">deltaNeutralValidation()</a> message with the <a class="el" href="classIBApi_1_1UnderComp.html" title="Delta-Neutral Underlying Component. ">UnderComp</a> structure. If the delta and price fields are empty in the original request, the confirmation will contain the current values from the server. These values are locked when RFQ is processed and remain locked unitl the RFQ is cancelled. </li>
</ul>
</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's identifier. </td></tr>
<tr><td class="paramname">underComp</td><td>Underlying Component </td></tr>
</table>
</dd>
</dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#abf465aff35de5e6c8ea15cecc953de3a">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="aec99a54139f97b8b9d9b3af9607ed5b5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void error </td>
<td>(</td>
<td class="paramtype">Exception </td>
<td class="paramname"><em>e</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Handles errors generated within the API itself. If an exception is thrown within the API code it will be notified here. Posible cases include errors while reading the information from the socket or even misshandlings at <a class="el" href="interfaceIBApi_1_1EWrapper.html" title="This interface's methods are used by the TWS/Gateway to communicate with the API client. Every API client application needs to implement this interface in order to handle all the events generated by the TWS/Gateway. Almost every EClientSocket method call will result in at least one event delivered here. ">EWrapper</a>'s implementing class. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td>the thrown exception. </td></tr>
</table>
</dd>
</dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a7dfc221702ca65195609213c984729b8">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a1685cd67a9c67795df4109b2322cd5db"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void error </td>
<td>(</td>
<td class="paramtype">string </td>
<td class="paramname"><em>str</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">str</td><td>The error message received. </td></tr>
</table>
</dd>
</dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a5d5b40b4377acc0dd2aecb3c88cf0099">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="ac6ce477b50dc1aa3970657bf8eec5e19"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void error </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>errorCode</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>errorMsg</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Errors sent by the TWS are received here. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>the request identifier which generated the error. </td></tr>
<tr><td class="paramname">errorCode</td><td>the code identifying the error. </td></tr>
<tr><td class="paramname">errorMsg</td><td>error's description. </td></tr>
</table>
</dd>
</dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a0dd0ca408b9ef70181cec1e5ac938039">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a991444ddac052d6beb5890b069046d60"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void execDetails </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classIBApi_1_1Contract.html">Contract</a> </td>
<td class="paramname"><em>contract</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classIBApi_1_1Execution.html">Execution</a> </td>
<td class="paramname"><em>execution</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides the executions which happened in the last 24 hours. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's identifier </td></tr>
<tr><td class="paramname">contract</td><td>the <a class="el" href="classIBApi_1_1Contract.html" title="class describing an instrument's definition ">Contract</a> of the <a class="el" href="classIBApi_1_1Order.html" title="The order's description. ">Order</a> </td></tr>
<tr><td class="paramname">execution</td><td>the <a class="el" href="classIBApi_1_1Execution.html" title="Class describing an order's execution. ">Execution</a> details. </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a9ec2bb66290f0e9022f6af48804e2aab" title="indicates the end of the Execution reception. ">execDetailsEnd</a>, <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a32cc57186bdab454cc4d52c9f32bb168" title="provides the CommissionReport of an Execution ">commissionReport</a>, <a class="el" href="classIBApi_1_1EClient.html#ae17dbb7d7c37591de983b2b74af2d9b5" title="Requests all the day's executions matching the filter. Only the current day's executions can be retri...">EClientSocket::reqExecutions</a>, <a class="el" href="classIBApi_1_1Execution.html" title="Class describing an order's execution. ">Execution</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a09f82de3d0666d13b00b5168e8b9313d">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a9ec2bb66290f0e9022f6af48804e2aab"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void execDetailsEnd </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>)</td><td></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>indicates the end of the <a class="el" href="classIBApi_1_1Execution.html" title="Class describing an order's execution. ">Execution</a> reception. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's identifier </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1DefaultEWrapper.html#a991444ddac052d6beb5890b069046d60" title="Provides the executions which happened in the last 24 hours. ">execDetails</a>, <a class="el" href="classIBApi_1_1DefaultEWrapper.html#a32cc57186bdab454cc4d52c9f32bb168" title="provides the CommissionReport of an Execution ">commissionReport</a>, <a class="el" href="classIBApi_1_1EClient.html#ae17dbb7d7c37591de983b2b74af2d9b5" title="Requests all the day's executions matching the filter. Only the current day's executions can be retri...">EClientSocket::reqExecutions</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#ac9b605c48d60da99ef595d2bc7ca39e2">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="ad0c3d6ec117223c5671ecc010b693585"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void fundamentalData </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns Reuters' Fundamental data </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's identifier </td></tr>
<tr><td class="paramname">data</td><td>Reuthers xml-formatted fundamental data </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1EClient.html#abba7df6f72f5516cae4c05c9144a89ee" title="Requests the contract's Reuters' global fundamental data. Reuters funalmental data will be returned a...">EClientSocket::reqFundamentalData</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#af209070fa9583fb4780be0f3ff1e61e4">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="ac865a37ffcba65d2b204660514c2bee7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void historicalData </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>reqId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>date</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>open</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>high</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>low</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>close</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>volume</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>count</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>WAP</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>hasGaps</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the requested historical data bars </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">reqId</td><td>the request's identifier </td></tr>
<tr><td class="paramname">date</td><td>the bar's date and time (either as a yyyymmss hh:mm:ss formatted string or as system time according to the request) </td></tr>
<tr><td class="paramname">open</td><td>the bar's open point </td></tr>
<tr><td class="paramname">high</td><td>the bar's high point </td></tr>
<tr><td class="paramname">low</td><td>the bar's low point </td></tr>
<tr><td class="paramname">close</td><td>the bar's closing point </td></tr>
<tr><td class="paramname">volume</td><td>the bar's traded volume if available </td></tr>
<tr><td class="paramname">count</td><td>the number of trades during the bar's timespan (only available for TRADES). </td></tr>
<tr><td class="paramname">WAP</td><td>the bar's Weighted Average Price </td></tr>
<tr><td class="paramname">hasGaps</td><td>indicates if the data has gaps or not. </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classIBApi_1_1EClient.html#a72fc193c4d50f738b6092a174988f093" title="Requests contracts' historical data. When requesting historical data, a finishing time and date is re...">EClientSocket::reqHistoricalData</a> </dd></dl>
<p>Implements <a class="el" href="interfaceIBApi_1_1EWrapper.html#a5cfc0dff9d3e3470f4c9209163279cda">EWrapper</a>.</p>
</div>
</div>
<a class="anchor" id="a5cbc7170b3737daf6dc4225e6a100405"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void managedAccounts </td>
<td>(</td>