-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-all.html
executable file
·1802 lines (1786 loc) · 179 KB
/
index-all.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_31) on Mon May 12 15:56:20 EDT 2014 -->
<TITLE>
Index (OANDA FXTrade Java API)
</TITLE>
<META NAME="date" CONTENT="2014-05-12">
<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (OANDA FXTrade Java API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./com/oanda/fxtrade/api/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./com/oanda/fxtrade/api/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html" title="class in com.oanda.fxtrade.api"><B>AccessDeniedException</B></A> - Exception in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD> <DT><A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html#AccessDeniedException()"><B>AccessDeniedException()</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html" title="class in com.oanda.fxtrade.api">AccessDeniedException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html#AccessDeniedException(java.lang.String)"><B>AccessDeniedException(String)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html" title="class in com.oanda.fxtrade.api">AccessDeniedException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html#AccessDeniedException(java.lang.String, java.lang.Exception)"><B>AccessDeniedException(String, Exception)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html" title="class in com.oanda.fxtrade.api">AccessDeniedException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html#AccessDeniedException(java.lang.Exception)"><B>AccessDeniedException(Exception)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccessDeniedException.html" title="class in com.oanda.fxtrade.api">AccessDeniedException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api"><B>Account</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>An Account object represents an existing Oanda account.<DT><A HREF="./com/oanda/fxtrade/api/AccountBusyException.html" title="class in com.oanda.fxtrade.api"><B>AccountBusyException</B></A> - Exception in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>AccountBusyException is thrown if a command cannot be executed because the account is busy<DT><A HREF="./com/oanda/fxtrade/api/AccountBusyException.html#AccountBusyException()"><B>AccountBusyException()</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccountBusyException.html" title="class in com.oanda.fxtrade.api">AccountBusyException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/AccountBusyException.html#AccountBusyException(java.lang.String)"><B>AccountBusyException(String)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccountBusyException.html" title="class in com.oanda.fxtrade.api">AccountBusyException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/AccountException.html" title="class in com.oanda.fxtrade.api"><B>AccountException</B></A> - Exception in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>AccountException is the base exception thrown by any Account object function<DT><A HREF="./com/oanda/fxtrade/api/AccountException.html#AccountException()"><B>AccountException()</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccountException.html" title="class in com.oanda.fxtrade.api">AccountException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/AccountException.html#AccountException(java.lang.String)"><B>AccountException(String)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/AccountException.html" title="class in com.oanda.fxtrade.api">AccountException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXEventManager.html#add(com.oanda.fxtrade.api.FXEvent)"><B>add(FXEvent)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventManager.html" title="interface in com.oanda.fxtrade.api">FXEventManager</A>
<DD>Add an FXEvent to this FXEventManager, to be notified of incoming FXEventInfos
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#addObserver(java.util.Observer)"><B>addObserver(Observer)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>Compensates Observable methods
<DT><A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api"><B>API</B></A> - Class in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>API is a factory class with static methods for creation of different class
instances used to utilise OANDA fxTrade API.<DT><A HREF="./com/oanda/fxtrade/api/API.html#API()"><B>API()</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="./com/oanda/fxtrade/api/Trace.LogFormatter.html#backtraceAsString(java.lang.Throwable)"><B>backtraceAsString(Throwable)</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Trace.LogFormatter.html" title="class in com.oanda.fxtrade.api">Trace.LogFormatter</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#BOND"><B>BOND</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="./com/oanda/fxtrade/api/CacheMode.html" title="enum in com.oanda.fxtrade.api"><B>CacheMode</B></A> - Enum in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>Defines caching policies that can be requested when making calls that might
return cached data.<DT><A HREF="./com/oanda/fxtrade/api/CandlePoint.html" title="interface in com.oanda.fxtrade.api"><B>CandlePoint</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>CandlePoint class is a container for candle information.<DT><A HREF="./com/oanda/fxtrade/api/User.html#changePassword(java.lang.String, java.lang.String)"><B>changePassword(String, String)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Change User Password
<DT><A HREF="./com/oanda/fxtrade/api/CandlePoint.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/CandlePoint.html" title="interface in com.oanda.fxtrade.api">CandlePoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api">FXPair</A>
<DD>Returns a exact copy of this FXPair.
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>Returns a exact copy of this FXTick.
<DT><A HREF="./com/oanda/fxtrade/api/LimitOrder.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/LimitOrder.html" title="interface in com.oanda.fxtrade.api">LimitOrder</A>
<DD>Returns a exact copy of this LimitOrder.
<DT><A HREF="./com/oanda/fxtrade/api/MarketOrder.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MarketOrder.html" title="interface in com.oanda.fxtrade.api">MarketOrder</A>
<DD>Returns a exact copy of this MarketOrder.
<DT><A HREF="./com/oanda/fxtrade/api/MarketTransferOrder.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MarketTransferOrder.html" title="interface in com.oanda.fxtrade.api">MarketTransferOrder</A>
<DD>Returns a exact copy of this MarketTransferOrder.
<DT><A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html" title="interface in com.oanda.fxtrade.api">MinMaxPoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/StopLossOrder.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/StopLossOrder.html" title="interface in com.oanda.fxtrade.api">StopLossOrder</A>
<DD>Returns a exact copy of this StopLossOrder.
<DT><A HREF="./com/oanda/fxtrade/api/TakeProfitOrder.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/TakeProfitOrder.html" title="interface in com.oanda.fxtrade.api">TakeProfitOrder</A>
<DD>Returns a exact copy of this TakeProfitOrder.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#clone()"><B>clone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns a exact copy of this Transaction.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#close(com.oanda.fxtrade.api.LimitOrder)"><B>close(LimitOrder)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Closes the specified LimitOrder.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#close(com.oanda.fxtrade.api.MarketOrder)"><B>close(MarketOrder)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Closes the specified MarketOrder.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#close(java.lang.String)"><B>close(String)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#closeAllLimitOrders()"><B>closeAllLimitOrders()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Closes all limit orders.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#closeAllMarketOrders()"><B>closeAllMarketOrders()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Closes all market orders.
<DT><A HREF="./com/oanda/fxtrade/api/package-summary.html"><B>com.oanda.fxtrade.api</B></A> - package com.oanda.fxtrade.api<DD> <DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#COMMODITY"><B>COMMODITY</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html#compareTo(java.lang.Object)"><B>compareTo(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html" title="interface in com.oanda.fxtrade.api">FXAccountEventInfo</A>
<DD>Comparable implementation
<DT><A HREF="./com/oanda/fxtrade/api/FXEventInfo.html#compareTo(java.lang.Object)"><B>compareTo(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventInfo.html" title="interface in com.oanda.fxtrade.api">FXEventInfo</A>
<DD>Comparable implementation
<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html#compareTo(com.oanda.fxtrade.api.FXPair)"><B>compareTo(FXPair)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api">FXPair</A>
<DD>Performs a lexicographical comparison of two FXPair objects.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html#compareTo(java.lang.Object)"><B>compareTo(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html" title="interface in com.oanda.fxtrade.api">FXRateEventInfo</A>
<DD>Comparable implementation
<DT><A HREF="./com/oanda/fxtrade/api/Configuration.html" title="class in com.oanda.fxtrade.api"><B>Configuration</B></A> - Class in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD> <DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#CONNECTED"><B>CONNECTED</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>Used when notifying Observers of a connection to the server
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#createEventManagerThread(boolean)"><B>createEventManagerThread(boolean)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>This method is used to create a new instance of the event dispatch thread.
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createFXClient(com.oanda.fxtrade.api.ServerInfo)"><B>createFXClient(ServerInfo)</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createFXGame()"><B>createFXGame()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of FXGame class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createFXPair()"><B>createFXPair()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of FXPair class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createFXPair(java.lang.String)"><B>createFXPair(String)</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of FXPair class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createFXPair(java.lang.String, java.lang.String)"><B>createFXPair(String, String)</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of FXPair class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createFXTick(long, double, double)"><B>createFXTick(long, double, double)</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of FXTick class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createFXTrade()"><B>createFXTrade()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of FXTrade class
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#createKeepAliveThread(boolean)"><B>createKeepAliveThread(boolean)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>This method is used to create a new instance of the keepalive thread.
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createLimitOrder()"><B>createLimitOrder()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of LimitOrder class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createMarketOrder()"><B>createMarketOrder()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of MarketOrder class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createMarketTransferOrder()"><B>createMarketTransferOrder()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#createRateThread(boolean)"><B>createRateThread(boolean)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD><B>Deprecated.</B>
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createServerInfo()"><B>createServerInfo()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createStopLossOrder(double)"><B>createStopLossOrder(double)</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of StopLossOrder class
<DT><A HREF="./com/oanda/fxtrade/api/API.html#createTakeProfitOrder(double)"><B>createTakeProfitOrder(double)</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/API.html" title="class in com.oanda.fxtrade.api">API</A>
<DD>Creates new instance of TakeProfitOrder class
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#CURRENCY"><B>CURRENCY</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#deleteObserver(java.util.Observer)"><B>deleteObserver(Observer)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#DISCONNECTED"><B>DISCONNECTED</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>Used when notifying Observers of a disconnection to the server
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="./com/oanda/fxtrade/api/EntryOrder.html" title="interface in com.oanda.fxtrade.api"><B>EntryOrder</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>EntryOrder is an abstract base class extending class Order to include expiry and desired execution price information.<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html" title="interface in com.oanda.fxtrade.api">FXAccountEventInfo</A>
<DD>Checks if this object is equal to another object.
<DT><A HREF="./com/oanda/fxtrade/api/FXEventKey.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventKey.html" title="class in com.oanda.fxtrade.api">FXEventKey</A>
<DD>Overloaded Object.equals method
<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api">FXPair</A>
<DD>Compares this FXPair to another pair.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html" title="interface in com.oanda.fxtrade.api">FXRateEventInfo</A>
<DD>Test to see if this object is equal to another object.
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>Compares two FXTick objects.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/ExceedsMaxExposureException.html" title="class in com.oanda.fxtrade.api"><B>ExceedsMaxExposureException</B></A> - Exception in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD> <DT><A HREF="./com/oanda/fxtrade/api/ExceedsMaxExposureException.html#ExceedsMaxExposureException()"><B>ExceedsMaxExposureException()</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ExceedsMaxExposureException.html" title="class in com.oanda.fxtrade.api">ExceedsMaxExposureException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/ExceedsMaxExposureException.html#ExceedsMaxExposureException(java.lang.String)"><B>ExceedsMaxExposureException(String)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ExceedsMaxExposureException.html" title="class in com.oanda.fxtrade.api">ExceedsMaxExposureException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#execute(com.oanda.fxtrade.api.LimitOrder)"><B>execute(LimitOrder)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Executes the specified LimitOrder.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#execute(com.oanda.fxtrade.api.MarketOrder)"><B>execute(MarketOrder)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Executes the specified MarketOrder.
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#FATAL_ERROR"><B>FATAL_ERROR</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>Used when notifying Observers of fatal errors
<DT><A HREF="./com/oanda/fxtrade/api/FIFOException.html" title="class in com.oanda.fxtrade.api"><B>FIFOException</B></A> - Exception in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>FIFOException is throw when a trade cannot be close because it violate the FIFO Rule<DT><A HREF="./com/oanda/fxtrade/api/FIFOException.html#FIFOException()"><B>FIFOException()</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FIFOException.html" title="class in com.oanda.fxtrade.api">FIFOException</A>
<DD>FIFOException constructor
<DT><A HREF="./com/oanda/fxtrade/api/FIFOException.html#FIFOException(java.lang.String)"><B>FIFOException(String)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FIFOException.html" title="class in com.oanda.fxtrade.api">FIFOException</A>
<DD>FIFOException constructor
<DT><A HREF="./com/oanda/fxtrade/api/Trace.LogFormatter.html#format(java.util.logging.LogRecord)"><B>format(LogRecord)</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Trace.LogFormatter.html" title="class in com.oanda.fxtrade.api">Trace.LogFormatter</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_CSBALACECORRECTION"><B>FX_CSBALACECORRECTION</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_CSCLOSEWITHOUTPENALTY"><B>FX_CSCLOSEWITHOUTPENALTY</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_CSINTERESTCORRECTION"><B>FX_CSINTERESTCORRECTION</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_CSINTERESTTODAYCORRECTION"><B>FX_CSINTERESTTODAYCORRECTION</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_CSPLCORRECTION"><B>FX_CSPLCORRECTION</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_CSTRADECANCEL"><B>FX_CSTRADECANCEL</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_CSTRADECORRECTION"><B>FX_CSTRADECORRECTION</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_DELFUNDS"><B>FX_DELFUNDS</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_DURATION"><B>FX_DURATION</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_INTDEFERRED"><B>FX_INTDEFERRED</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_INTEREST"><B>FX_INTEREST</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_MARGIN"><B>FX_MARGIN</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_NSF"><B>FX_NSF</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_ORDERCANCELBOUNDSVIOLATION"><B>FX_ORDERCANCELBOUNDSVIOLATION</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_ROLLOVER"><B>FX_ROLLOVER</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_SL"><B>FX_SL</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_TP"><B>FX_TP</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_USER"><B>FX_USER</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#FX_XFR_ORDER"><B>FX_XFR_ORDER</B></A> -
Static variable in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html" title="class in com.oanda.fxtrade.api"><B>FXAccountEvent</B></A> - Class in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>The FXAccountEvent class is the abstract superclass of all events which will
be fired in response to a new transaction done on an account.<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html#FXAccountEvent()"><B>FXAccountEvent()</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html" title="class in com.oanda.fxtrade.api">FXAccountEvent</A>
<DD>Default constructor.
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html#FXAccountEvent(java.lang.String)"><B>FXAccountEvent(String)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html" title="class in com.oanda.fxtrade.api">FXAccountEvent</A>
<DD>Constructor to set the key.
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html#FXAccountEvent(boolean)"><B>FXAccountEvent(boolean)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html" title="class in com.oanda.fxtrade.api">FXAccountEvent</A>
<DD>Constructor to set the transient flag.
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html#FXAccountEvent(java.lang.String, boolean)"><B>FXAccountEvent(String, boolean)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html" title="class in com.oanda.fxtrade.api">FXAccountEvent</A>
<DD>Constructor to set the key and transient flag.
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html" title="interface in com.oanda.fxtrade.api"><B>FXAccountEventInfo</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>An FXAccountEventInfo object encapsulates a new transaction received from the FXServer.<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api"><B>FXClient</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>An FXClient object facilitates communication with OANDA's servers.<DT><A HREF="./com/oanda/fxtrade/api/FXClient.FXNotify.html" title="enum in com.oanda.fxtrade.api"><B>FXClient.FXNotify</B></A> - Enum in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD> <DT><A HREF="./com/oanda/fxtrade/api/FXEvent.html" title="class in com.oanda.fxtrade.api"><B>FXEvent</B></A> - Class in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>FXEvent is the abstract superclass of all events.<DT><A HREF="./com/oanda/fxtrade/api/FXEvent.html#FXEvent()"><B>FXEvent()</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEvent.html" title="class in com.oanda.fxtrade.api">FXEvent</A>
<DD>Default constructor.
<DT><A HREF="./com/oanda/fxtrade/api/FXEvent.html#FXEvent(boolean)"><B>FXEvent(boolean)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEvent.html" title="class in com.oanda.fxtrade.api">FXEvent</A>
<DD>Optional constructor to specify the transient flag.
<DT><A HREF="./com/oanda/fxtrade/api/FXEventInfo.html" title="interface in com.oanda.fxtrade.api"><B>FXEventInfo</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>Interface for data passed to an FXEvent<DT><A HREF="./com/oanda/fxtrade/api/FXEventKey.html" title="class in com.oanda.fxtrade.api"><B>FXEventKey</B></A> - Class in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>FXEventKey is an internal class used to match FXEvents to FXEventInfos in a general fashion<DT><A HREF="./com/oanda/fxtrade/api/FXEventKey.html#FXEventKey(com.oanda.fxtrade.api.Transaction)"><B>FXEventKey(Transaction)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventKey.html" title="class in com.oanda.fxtrade.api">FXEventKey</A>
<DD>Construct an FXEventKey corresponding to a Transaction
<DT><A HREF="./com/oanda/fxtrade/api/FXEventKey.html#FXEventKey(com.oanda.fxtrade.api.FXPair)"><B>FXEventKey(FXPair)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventKey.html" title="class in com.oanda.fxtrade.api">FXEventKey</A>
<DD>Construct an FXEventKey corresponding to an FXPair
<DT><A HREF="./com/oanda/fxtrade/api/FXEventManager.html" title="interface in com.oanda.fxtrade.api"><B>FXEventManager</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>The FXEventManager class keeps track of a set of FXEvents of a particular type,
handling their registration, notification, and unregistration.<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api"><B>FXHistoryPoint</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>A useful container class that holds FXTick objects representing the
opening, closing, minimum and maximum bid and ask prices.<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api"><B>FXPair</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>FXPair object represents a pair of ISO currency symbols.<DT><A HREF="./com/oanda/fxtrade/api/FXPairException.html" title="class in com.oanda.fxtrade.api"><B>FXPairException</B></A> - Exception in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>FXPairException is throw when using/creating an invalid currency pair<DT><A HREF="./com/oanda/fxtrade/api/FXPairException.html#FXPairException()"><B>FXPairException()</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPairException.html" title="class in com.oanda.fxtrade.api">FXPairException</A>
<DD>FXPairException constructor
<DT><A HREF="./com/oanda/fxtrade/api/FXPairException.html#FXPairException(java.lang.String)"><B>FXPairException(String)</B></A> -
Constructor for exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPairException.html" title="class in com.oanda.fxtrade.api">FXPairException</A>
<DD>FXPairException constructor
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEvent.html" title="class in com.oanda.fxtrade.api"><B>FXRateEvent</B></A> - Class in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>The FXRateEvent class is the abstract superclass of all events which will
be fired in response to a change in current market rates.<DT><A HREF="./com/oanda/fxtrade/api/FXRateEvent.html#FXRateEvent()"><B>FXRateEvent()</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEvent.html" title="class in com.oanda.fxtrade.api">FXRateEvent</A>
<DD>Default constructor.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEvent.html#FXRateEvent(java.lang.String)"><B>FXRateEvent(String)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEvent.html" title="class in com.oanda.fxtrade.api">FXRateEvent</A>
<DD>Constructor to set the key.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEvent.html#FXRateEvent(boolean)"><B>FXRateEvent(boolean)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEvent.html" title="class in com.oanda.fxtrade.api">FXRateEvent</A>
<DD>Constructor to set the transient flag.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEvent.html#FXRateEvent(java.lang.String, boolean)"><B>FXRateEvent(String, boolean)</B></A> -
Constructor for class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEvent.html" title="class in com.oanda.fxtrade.api">FXRateEvent</A>
<DD>Constructor to set the key and transient flag.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html" title="interface in com.oanda.fxtrade.api"><B>FXRateEventInfo</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>An FXRateEventInfo object encapsulates a new market rate received from the server.<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api"><B>FXTick</B></A> - Interface in <A HREF="./com/oanda/fxtrade/api/package-summary.html">com.oanda.fxtrade.api</A><DD>An FXTick object represents a single forex spot price.</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#get(java.lang.String)"><B>get(String)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD><B>Deprecated.</B> <I>use getInstrument instead</I>
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getAccountId()"><B>getAccountId()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the unique id number associated with this account.
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getAccountIdBuy()"><B>getAccountIdBuy()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the account Id of the buy account.
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getAccountIdSell()"><B>getAccountIdSell()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the account Id of the sell account.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getAccountName()"><B>getAccountName()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the account name.
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getAccounts()"><B>getAccounts()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns a Vector of Accounts owned by this user
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getAccountWithId(int)"><B>getAccountWithId(int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns the Account owned by this user with the given account id.
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getAddress()"><B>getAddress()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns the users address.
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getAllSymbols()"><B>getAllSymbols()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD><B>Deprecated.</B> <I>Use getAllSymbols(homeCurrency) instead</I>
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getAllSymbols(java.lang.String)"><B>getAllSymbols(String)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Retrieves all pairs both tradeable and non-tradable with respect to a home currency.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getAmount()"><B>getAmount()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the transaction amount in terms of home currency
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getAmountBuy()"><B>getAmountBuy()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the amount to buy.
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getAmountSell()"><B>getAmountSell()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the amount to sell.
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#getAsk()"><B>getAsk()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>Returns the ask price.
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getAsk()"><B>getAsk()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get current ask rate
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getBalance()"><B>getBalance()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the most up-to-date account balance, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getBalance()"><B>getBalance()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the account balance at the time of the transaction
<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html#getBase()"><B>getBase()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api">FXPair</A>
<DD>Returns the base currency.
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#getBid()"><B>getBid()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>Returns the bid price.
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getBid()"><B>getBid()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get current bid rate
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getBrowser()"><B>getBrowser()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getCandlePoint()"><B>getCandlePoint()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>Returns the associated CandlePoint for this FXHistoryPoint.
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getCandles(com.oanda.fxtrade.api.FXPair, long, int)"><B>getCandles(FXPair, long, int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Obtain the current history (in terms of CandlePoints)
of a given currency pair at a given millisecond
interval of a particular length (numberOfCandles).
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getCandles(com.oanda.fxtrade.api.FXPair, long, int, long, long)"><B>getCandles(FXPair, long, int, long, long)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Obtain the current history (in terms of CandlePoints)
of a given currency pair at a given millisecond
interval of a particular length (numberOfCandles).
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getCategory()"><B>getCategory()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Retrieves instrument category
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getCity()"><B>getCity()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns this users city.
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getClientType()"><B>getClientType()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getClientVersion()"><B>getClientVersion()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/CandlePoint.html#getClose()"><B>getClose()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/CandlePoint.html" title="interface in com.oanda.fxtrade.api">CandlePoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getClose()"><B>getClose()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>Returns the FXTick containing the closing bid and ask price for this FXHistoryPoint.
<DT><A HREF="./com/oanda/fxtrade/api/MarketOrder.html#getClose()"><B>getClose()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MarketOrder.html" title="interface in com.oanda.fxtrade.api">MarketOrder</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getClosingRate(boolean)"><B>getClosingRate(boolean)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Give the closing rate based on trade type
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getCompletionCode()"><B>getCompletionCode()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the completion code.
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getConnectionType()"><B>getConnectionType()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getCorrected()"><B>getCorrected()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>A flag to indicate whether the FXHistoryPoint has been corrected in
the vector context that it is part of.
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getCountry()"><B>getCountry()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns this users country.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getCreateDate()"><B>getCreateDate()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the creation date for this account expressed as a unix timestamp.
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getCreateDate()"><B>getCreateDate()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD><B>Deprecated.</B> <I>legacy method. always returns zero</I>
<DT><A HREF="./com/oanda/fxtrade/api/InvalidLimitsException.html#getCurrentPrice()"><B>getCurrentPrice()</B></A> -
Method in exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/InvalidLimitsException.html" title="class in com.oanda.fxtrade.api">InvalidLimitsException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getCurrentTick()"><B>getCurrentTick()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get the latest tick for this instrument
<DT><A HREF="./com/oanda/fxtrade/api/TrailingStop.html#getCurrentValue()"><B>getCurrentValue()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/TrailingStop.html" title="interface in com.oanda.fxtrade.api">TrailingStop</A>
<DD>The current value is the distance between the trigger price and
market price.
<DT><A HREF="./com/oanda/fxtrade/api/TrailingStop.html#getCurrentValueTime()"><B>getCurrentValueTime()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/TrailingStop.html" title="interface in com.oanda.fxtrade.api">TrailingStop</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Trace.html#getDebug()"><B>getDebug()</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Trace.html" title="class in com.oanda.fxtrade.api">Trace</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Trace.html#getDebugError()"><B>getDebugError()</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Trace.html" title="class in com.oanda.fxtrade.api">Trace</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Trace.html#getDebugNetwork()"><B>getDebugNetwork()</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Trace.html" title="class in com.oanda.fxtrade.api">Trace</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Trace.html#getDebugNetworkFull()"><B>getDebugNetworkFull()</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Trace.html" title="class in com.oanda.fxtrade.api">Trace</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getDeviceId()"><B>getDeviceId()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getDeviceType()"><B>getDeviceType()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getDiaspora()"><B>getDiaspora()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getEmail()"><B>getEmail()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns this users email address.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getEnteredMarginCallTime()"><B>getEnteredMarginCallTime()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the time margin call was entered.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getEventManager()"><B>getEventManager()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Gets the eventManager for this Account
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getEventManager()"><B>getEventManager()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Get the event manager for this RateTable
<DT><A HREF="./com/oanda/fxtrade/api/FXEventManager.html#getEvents()"><B>getEvents()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventManager.html" title="interface in com.oanda.fxtrade.api">FXEventManager</A>
<DD>Gets the list of events currently registered to this FXEventManager
<DT><A HREF="./com/oanda/fxtrade/api/EntryOrder.html#getExpiry()"><B>getExpiry()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/EntryOrder.html" title="interface in com.oanda.fxtrade.api">EntryOrder</A>
<DD>Returns this order's expiry date expressed as a unix timestamp.
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#getFXServerTime()"><B>getFXServerTime()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD><B>Deprecated.</B> <I></I>
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getGeolocation()"><B>getGeolocation()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getGraphicsCard()"><B>getGraphicsCard()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getHighPriceLimit()"><B>getHighPriceLimit()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the high price limit.
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#getHistory(com.oanda.fxtrade.api.FXPair, long, int)"><B>getHistory(FXPair, long, int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD><B>Deprecated.</B> <I>Use getHistory from the RateTable instead</I>
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getHistory(com.oanda.fxtrade.api.FXPair, long, int)"><B>getHistory(FXPair, long, int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Obtain the current history (in terms of FXHistoryPoints) of a given currency
pair at a given millisecond interval of a particular length (numberOfPoints).
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getHistory(com.oanda.fxtrade.api.FXPair, long, int, com.oanda.fxtrade.api.CacheMode)"><B>getHistory(FXPair, long, int, CacheMode)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Obtain the current history (in terms of FXHistoryPoints) of a given currency
pair at a given millisecond interval of a particular length (numberOfPoints).
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getHistory(com.oanda.fxtrade.api.FXPair, long, int, long, long, com.oanda.fxtrade.api.CacheMode)"><B>getHistory(FXPair, long, int, long, long, CacheMode)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Obtain the current history (in terms of FXHistoryPoints) of a given currency
pair at a given millisecond interval of a particular length (numberOfPoints).
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getHomeCurrency()"><B>getHomeCurrency()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the home currency for this account.
<DT><A HREF="./com/oanda/fxtrade/api/Trace.html#getInstance()"><B>getInstance()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Trace.html" title="class in com.oanda.fxtrade.api">Trace</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getInstrument(java.lang.String)"><B>getInstrument(String)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Retrieves instrument object for given symbol
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getInterest()"><B>getInterest()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the interest paid or earned.
<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html#getInverse()"><B>getInverse()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api">FXPair</A>
<DD>Returns a new FXPair object with the base and quote currency reversed.
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#getInverse()"><B>getInverse()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>Return a new FXTick which is the inverse of this FXTick.
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getJvm()"><B>getJvm()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html#getKey()"><B>getKey()</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEvent.html" title="class in com.oanda.fxtrade.api">FXAccountEvent</A>
<DD>Accessor method used by the API.
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html#getKey()"><B>getKey()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html" title="interface in com.oanda.fxtrade.api">FXAccountEventInfo</A>
<DD>Accessor method used by the API
<DT><A HREF="./com/oanda/fxtrade/api/FXEvent.html#getKey()"><B>getKey()</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEvent.html" title="class in com.oanda.fxtrade.api">FXEvent</A>
<DD>Gets the key for this event.
<DT><A HREF="./com/oanda/fxtrade/api/FXEventInfo.html#getKey()"><B>getKey()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventInfo.html" title="interface in com.oanda.fxtrade.api">FXEventInfo</A>
<DD>Gets the event key for this event info.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEvent.html#getKey()"><B>getKey()</B></A> -
Method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEvent.html" title="class in com.oanda.fxtrade.api">FXRateEvent</A>
<DD>Accessor method used by the API.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html#getKey()"><B>getKey()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html" title="interface in com.oanda.fxtrade.api">FXRateEventInfo</A>
<DD>Accessor method used by the API
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getLocale()"><B>getLocale()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getLowPriceLimit()"><B>getLowPriceLimit()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the low price limit.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getMargin()"><B>getMargin()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the margin used by this transaction.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getMarginAvailable()"><B>getMarginAvailable()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the most up-to-date margin available value, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getMarginCallRate()"><B>getMarginCallRate()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the margin call rate.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getMarginRate()"><B>getMarginRate()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the margin rate.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getMarginUsed()"><B>getMarginUsed()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the most up-to-date margin used value, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/CandlePoint.html#getMax()"><B>getMax()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/CandlePoint.html" title="interface in com.oanda.fxtrade.api">CandlePoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getMax()"><B>getMax()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>Returns the FXTick containing the maximum bid and ask price for this FXHistoryPoint.
<DT><A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html#getMax()"><B>getMax()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html" title="interface in com.oanda.fxtrade.api">MinMaxPoint</A>
<DD>Return the maximum ask price for the interval
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getMaxMargin()"><B>getMaxMargin()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD><B>Deprecated.</B>
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getMaxTradeSize()"><B>getMaxTradeSize()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get max trade size
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getMaxTrailingStop()"><B>getMaxTrailingStop()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get largest allowable trailing stop
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#getMaxUnits()"><B>getMaxUnits()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>Returns the maximum amount of units this tick applies for.
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#getMean()"><B>getMean()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getMean()"><B>getMean()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get current mean rate
<DT><A HREF="./com/oanda/fxtrade/api/CandlePoint.html#getMin()"><B>getMin()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/CandlePoint.html" title="interface in com.oanda.fxtrade.api">CandlePoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getMin()"><B>getMin()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>Returns the FXTick containing the minimum bid and ask price for this FXHistoryPoint.
<DT><A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html#getMin()"><B>getMin()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html" title="interface in com.oanda.fxtrade.api">MinMaxPoint</A>
<DD>Return the minimum bid price for the interval
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getMinMaxPoint()"><B>getMinMaxPoint()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>Returns the associated MinMaxPoint for this FXHistoryPoint.
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getMinMaxs(com.oanda.fxtrade.api.FXPair, long, int)"><B>getMinMaxs(FXPair, long, int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Obtain the current history (in terms of MinMaxPoints)
of a given currency pair at a given millisecond
interval of a particular length (numberOfPoints).
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getMinMaxs(com.oanda.fxtrade.api.FXPair, long, int, long, long)"><B>getMinMaxs(FXPair, long, int, long, long)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Obtain the current history (in terms of MinMaxPoints)
of a given currency pair at a given millisecond
interval of a particular length (numberOfPoints).
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getMinTrailingStop()"><B>getMinTrailingStop()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get smallest allowable trailing stop
<DT><A HREF="./com/oanda/fxtrade/api/MinVersionException.html#getMinVersion()"><B>getMinVersion()</B></A> -
Method in exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MinVersionException.html" title="class in com.oanda.fxtrade.api">MinVersionException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getName()"><B>getName()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns this users full name.
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getOpc()"><B>getOpc()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/CandlePoint.html#getOpen()"><B>getOpen()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/CandlePoint.html" title="interface in com.oanda.fxtrade.api">CandlePoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getOpen()"><B>getOpen()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>Returns the FXTick containing the opening bid and ask price for this FXHistoryPoint.
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getOpeningRate(boolean)"><B>getOpeningRate(boolean)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Give the opening rate based on trade type
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getOperatingSystem()"><B>getOperatingSystem()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getOrderLink()"><B>getOrderLink()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the transaction number of the limit order that resulted in this transaction (i.e the MarketOrder).
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getOrders()"><B>getOrders()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the Vector of LimitOrders held by this account, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getOrderWithId(int)"><B>getOrderWithId(int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the LimitOrder with the given transaction number.
<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api">FXPair</A>
<DD>Returns the currency pair as a String.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html" title="interface in com.oanda.fxtrade.api">FXRateEventInfo</A>
<DD>Get the currency pair whose rate has changed
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the FXPair.
<DT><A HREF="./com/oanda/fxtrade/api/Position.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Position.html" title="interface in com.oanda.fxtrade.api">Position</A>
<DD>Gets the pair of this position's open market orders.
<DT><A HREF="./com/oanda/fxtrade/api/TrailingStop.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/TrailingStop.html" title="interface in com.oanda.fxtrade.api">TrailingStop</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the currency pair
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getPair()"><B>getPair()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the currency pair (FXPair) for this transfer.
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getPairs()"><B>getPairs()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD><B>Deprecated.</B> <I>Use getAllSymbols(homeCurrency) instead</I>
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getPassword()"><B>getPassword()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns the login password for this user.
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getPIP()"><B>getPIP()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get value of one pip
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getPipettes()"><B>getPipettes()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get the number of pippettes
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getPL()"><B>getPL()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the P&L of the transaction.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getPosition(com.oanda.fxtrade.api.FXPair)"><B>getPosition(FXPair)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Get the currently open market position for a given pair
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getPositions()"><B>getPositions()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Get all the currently open market positions
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getPositionValue()"><B>getPositionValue()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the most up-to-date values of all trades held by this account based in home currency, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getPostalCode()"><B>getPostalCode()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns this users postal code.
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getPrecision()"><B>getPrecision()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get instrument precision
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getPrice()"><B>getPrice()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the order price.
<DT><A HREF="./com/oanda/fxtrade/api/Position.html#getPrice()"><B>getPrice()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Position.html" title="interface in com.oanda.fxtrade.api">Position</A>
<DD>Gets the average price of open market orders, weighted by size.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getPrice()"><B>getPrice()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the execution price for this transaction
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getPrice()"><B>getPrice()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the price of this transfer.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getProfile()"><B>getProfile()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the profile string for this account
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getProfile()"><B>getProfile()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns the profile string for this user.
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getProxyPort()"><B>getProxyPort()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Configuration.html#getProxyReleaseVersion()"><B>getProxyReleaseVersion()</B></A> -
Static method in class com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Configuration.html" title="class in com.oanda.fxtrade.api">Configuration</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXPair.html#getQuote()"><B>getQuote()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXPair.html" title="interface in com.oanda.fxtrade.api">FXPair</A>
<DD>Returns the quote currency.
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getRate(com.oanda.fxtrade.api.FXPair)"><B>getRate(FXPair)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Returns the most recent FXTick for the given FXPair without ladder markup.
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getRateForUnits(com.oanda.fxtrade.api.FXPair, long)"><B>getRateForUnits(FXPair, long)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Returns the most recent FXTick for the given FXPair in the correct rung.
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getRateHostname()"><B>getRateHostname()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getRatePort()"><B>getRatePort()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/RateTable.html#getRatesForAllUnits(com.oanda.fxtrade.api.FXPair)"><B>getRatesForAllUnits(FXPair)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/RateTable.html" title="interface in com.oanda.fxtrade.api">RateTable</A>
<DD>Returns the most recent FXTick for the given FXPair in all ladders.
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#getRateTable()"><B>getRateTable()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>Returns the RateTable object
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getRealizedPL()"><B>getRealizedPL()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the most up-to-date realized profit/loss value, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/MarketOrder.html#getRealizedPL()"><B>getRealizedPL()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MarketOrder.html" title="interface in com.oanda.fxtrade.api">MarketOrder</A>
<DD>Returns the profit realized on this trade.
<DT><A HREF="./com/oanda/fxtrade/api/InvalidLimitsException.html#getRequestedPrice()"><B>getRequestedPrice()</B></A> -
Method in exception com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/InvalidLimitsException.html" title="class in com.oanda.fxtrade.api">InvalidLimitsException</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/SessionInfo.html#getScreenSize()"><B>getScreenSize()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/SessionInfo.html" title="interface in com.oanda.fxtrade.api">SessionInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getServerHostname()"><B>getServerHostname()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getServerPort()"><B>getServerPort()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#getServerTime()"><B>getServerTime()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>Returns the current time held by the OANDA server expressed as a unix timestamp.
<DT><A HREF="./com/oanda/fxtrade/api/FXClient.html#getSessionKey()"><B>getSessionKey()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXClient.html" title="interface in com.oanda.fxtrade.api">FXClient</A>
<DD>Returns the current session key.
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getStatus()"><B>getStatus()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Gets status of instrument.
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getStopLoss()"><B>getStopLoss()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the StopLossOrder associated with this Order.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getStopLoss()"><B>getStopLoss()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the stop loss value associated with this transaction.
<DT><A HREF="./com/oanda/fxtrade/api/Instrument.html#getSymbol()"><B>getSymbol()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Instrument.html" title="interface in com.oanda.fxtrade.api">Instrument</A>
<DD>Get the symbol for this instrument
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getTakeProfit()"><B>getTakeProfit()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the TakeProfitOrder associated with this Order.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getTakeProfit()"><B>getTakeProfit()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the take profit value associated with this transaction.
<DT><A HREF="./com/oanda/fxtrade/api/User.html#getTelephone()"><B>getTelephone()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/User.html" title="interface in com.oanda.fxtrade.api">User</A>
<DD>Returns this users telephone number.
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getThsHostname()"><B>getThsHostname()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getThsPort()"><B>getThsPort()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/ServerInfo.html#getThsProxyPort()"><B>getThsProxyPort()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/ServerInfo.html" title="interface in com.oanda.fxtrade.api">ServerInfo</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html#getTick()"><B>getTick()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html" title="interface in com.oanda.fxtrade.api">FXRateEventInfo</A>
<DD>Gets the new rate of the pair whose rate has changed
<DT><A HREF="./com/oanda/fxtrade/api/TrailingStop.html#getTicketNumber()"><B>getTicketNumber()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/TrailingStop.html" title="interface in com.oanda.fxtrade.api">TrailingStop</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/CandlePoint.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/CandlePoint.html" title="interface in com.oanda.fxtrade.api">CandlePoint</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html" title="interface in com.oanda.fxtrade.api">FXAccountEventInfo</A>
<DD>Gets the server timestamp that the data in the event info was generated
<DT><A HREF="./com/oanda/fxtrade/api/FXEventInfo.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXEventInfo.html" title="interface in com.oanda.fxtrade.api">FXEventInfo</A>
<DD>Gets the server timestamp that the data in the event info was generated
<DT><A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXHistoryPoint.html" title="interface in com.oanda.fxtrade.api">FXHistoryPoint</A>
<DD>Returns the opening timestamp for this FXHistoryPoint.
<DT><A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXRateEventInfo.html" title="interface in com.oanda.fxtrade.api">FXRateEventInfo</A>
<DD>Gets the server timestamp that the data in the event info was generated
<DT><A HREF="./com/oanda/fxtrade/api/FXTick.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXTick.html" title="interface in com.oanda.fxtrade.api">FXTick</A>
<DD>Returns the unix timestamp for this FXTick.
<DT><A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MinMaxPoint.html" title="interface in com.oanda.fxtrade.api">MinMaxPoint</A>
<DD>Return the server timestamp for this MinMaxPoint (time in seconds after
the beginning of the epoch).
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the timestamp for this order.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Return the unix timestamp for when this transaction occured
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getTimestamp()"><B>getTimestamp()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the timestamp for this transfer.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getTrades()"><B>getTrades()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the Vector of MarketOrders currently held by this account, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getTradeWithId(int)"><B>getTradeWithId(int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the MarketOrder with the given transaction number.
<DT><A HREF="./com/oanda/fxtrade/api/TrailingStop.html#getTrailingAmount()"><B>getTrailingAmount()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/TrailingStop.html" title="interface in com.oanda.fxtrade.api">TrailingStop</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/TrailingStop.html#getTrailingAmountAsPrice()"><B>getTrailingAmountAsPrice()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/TrailingStop.html" title="interface in com.oanda.fxtrade.api">TrailingStop</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getTrailingStop(com.oanda.fxtrade.api.MarketOrder)"><B>getTrailingStop(MarketOrder)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the trailing stop for the given trade.
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getTrailingStopLoss()"><B>getTrailingStopLoss()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getTrailingStopLoss()"><B>getTrailingStopLoss()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the trailing stop value in PIPs
<DT><A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html#getTransaction()"><B>getTransaction()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/FXAccountEventInfo.html" title="interface in com.oanda.fxtrade.api">FXAccountEventInfo</A>
<DD>Gets the transaction whose occurrence created this FXEventInfo
<DT><A HREF="./com/oanda/fxtrade/api/MarketOrder.html#getTransactionLink()"><B>getTransactionLink()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/MarketOrder.html" title="interface in com.oanda.fxtrade.api">MarketOrder</A>
<DD>Returns the transaction number of any trade or order that is related to this trade.
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getTransactionLink()"><B>getTransactionLink()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the transaction number of the transaction that is related to this transaction.
<DT><A HREF="./com/oanda/fxtrade/api/Order.html#getTransactionNumber()"><B>getTransactionNumber()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Order.html" title="interface in com.oanda.fxtrade.api">Order</A>
<DD>Returns the OANDA transaction number
<DT><A HREF="./com/oanda/fxtrade/api/Transaction.html#getTransactionNumber()"><B>getTransactionNumber()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transaction.html" title="interface in com.oanda.fxtrade.api">Transaction</A>
<DD>Returns the transaction number.
<DT><A HREF="./com/oanda/fxtrade/api/Transfer.html#getTransactionNumber()"><B>getTransactionNumber()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Transfer.html" title="interface in com.oanda.fxtrade.api">Transfer</A>
<DD>Returns the OANDA transaction number
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getTransactions()"><B>getTransactions()</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns a Vector of Transactions that have recently occured on this account, querying the server if neccessary.
<DT><A HREF="./com/oanda/fxtrade/api/Account.html#getTransactionWithId(int)"><B>getTransactionWithId(int)</B></A> -
Method in interface com.oanda.fxtrade.api.<A HREF="./com/oanda/fxtrade/api/Account.html" title="interface in com.oanda.fxtrade.api">Account</A>
<DD>Returns the Transaction with the given transaction number.