-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-researchdesign.Rmd
1473 lines (1263 loc) · 170 KB
/
02-researchdesign.Rmd
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
---
#########################################
# options for knitting a single chapter #
#########################################
output:
bookdown::pdf_document2:
template: templates/brief_template.tex
citation_package: biblatex
bookdown::html_document2: default
bookdown::word_document2: default
documentclass: book
#bibliography: references.bib
---
```{block type='savequote', quote_author='(ref:minsky-quote)', include=knitr::is_latex_output()}
The general economic tone since the mid-sixties has been conducive to short-run speculation rather than to the long-run capital development of the economy.
```
(ref:minsky-quote) --- Hyman @minsky2015 [\text{p.} 57] <!-- Alternative: Hyman Minsky -@minsky2015 [\text{p.} 57]-->
# Research design {#two}
\minitoc
## Introduction {#twoone}
\noindent This chapter shows how the research approach in this thesis is designed. Beyond explaining the research methods, the main goal is to provide a clear view of the intended contribution of this thesis. As shown in the chapter [General introduction], this thesis questions how developing and developed countries are impacted by the carry trade activity. Notably, two countries are at the center of this research: Brazil and Switzerland. Both countries were not chosen randomly, neither by my Brazilian roots or main research interests. The Brazilian real and the Swiss franc are major target and funding currencies in the carry trade strategy, respectively. In recent economic history, the two have been challengers of the monetary policy rules. For example, after the GFC, the Brazilian government imposed capital controls on portfolio investments [@tomio2011; @centralbankofbrazil2013], and the SNB set a minimum Swiss franc to euro exchange rate [@swissnationalbank2011] and introduced negative policy rates in 2014 [@swissnationalbank2014].
At the time they were implemented, these policies surprised financial market participants. Another common feature was the willingness to defend the domestic currency from foreign capital excesses. In the highly intertwined financial system we live in, countries lose policy space to tame negative international spillovers. In order to escape TINA ("there is no alternative"), central banks have to innovate to achieve different results from those obtained following the usual rule book supplied by global governance institutions (e.g., International Monetary Fund - IMF). Since there is no global regulation, central banks often act unilaterally to tame the negative impacts of the carry trade activity. Overall, investigating the carry trade effects implies also exploring the current international monetary system.
To clarify the aim and scope of this investigation, the initial sections of this chapter explore the theoretical framework. First, Section \@ref(twotwo) looks into the origins and the current state of our financialized economic system. It is a system developed by a process known as financialization. Second, in Section \@ref(twothree), there is the carry trade itself. This speculative investment strategy would not cause harm in a world without financialization. Due to the excesses of global finance, the carry trade spread damage worldwide. This background is essential to understand the next chapters. In the following, the conceptual framework is presented in Section \@ref(twofour) based on the main research question.
Additionally, the epistemological approach and the research methodology are adapted to the study of the carry trade. Based on the concepts in the philosophy of science, the epistemology used is rooted in realism, skepticism, empiricism and the principle of parsimony. Basically, using assumptions as close as possible to the real economy (realism/realisticness), the reliability of current knowledge (skepticism) on the carry trade literature is empirically tested (empiricism) in simplified models (the principle of parsimony).
Regarding the research methodology, it is a holistic study using quantitative methods, collecting and analyzing secondary data. In holism, the interdependence of actors and institutions is essential. Consequently, this fits the political economy approach to study the complexity of the carry trade activity. In our current dysfunctional system, power relations go beyond the usual binary rationales (i.e., developed or emerging/developing countries; funding or target currencies) explored in the literature. Though relevant to some extent, such dichotomies do not reflect the complexity of carry trade activities and their power relations.
This implies to focusing on the States, but also on central banks and on private investors of different kinds (dealers/intermediaries, asset managers, leveraged funds, etc.). Being the guardians of the currencies, central banks' non-cooperative actions exemplify this logic of power between States that dictate the carry trade. Monetary policy is "a peculiar form of economic state power" [@braun2020, \text{p.} 242]. In this sense, monetary policy fostered financialization while depending on financial markets to be effectively implemented [@krippner2011; @braun2018; @braun2020a; @walter2020]. The dependence of the monetary authority on financial market actors, whom sought to impose their will, is explored by two types of power in the modern political economy: instrumental power ("lobbying capacity") and structural power ("the financial sector's central position in the economy") [@braun2020a, \text{p.} 1].
In the same line as the analysis of the relationship between central banking and the shadow banking developed by @braun2020, the carry trade activity also implies both infrastructural entanglement and power. With free capital movement worldwide and inflation targeting as the main monetary policy, incentives for the carry trade are created with systematic interest rate differentials. On the one hand, the U.S. monetary policy drives the "global financial cycle" [@miranda-agrippino2020]. On the other hand, there are two other types of monetary policy in this context. First, other developed countries with central currencies can independently implement their monetary policy (e.g., Euro area, Switzerland, and Japan). Second, the other peripheric countries must subordinate their monetary policy accordingly to the U.S. or other developed countries. Within the carry trade activity, this subordination means relatively higher interest rates and exchange rate volatility, which are "necessary to compensate for these currencies' lower standing in the international currency hierarchy" [@bonizzi2020, \text{p.} 183].
This thesis aims to fill a gap in the literature by combining the empirical investigation of the carry trade effects on the real economy with a political economy approach. Concerning the quantitative methods, advanced time-series econometrics is used. The choice for these econometric methods is based on the type of data available to proxy the carry trade activity. Moreover, one of the main features of this thesis design is reproducibility. An online repository^[Accessible on https://github.com/bttomio/UGA_thesisdown.] is available to reproduce the entire thesis with ```R```. In an effort to foster a more ethical and transparent engagement to research in Economics, all econometric procedures are reproducible on Stata (Chapters \@ref(three) and \@ref(four)) and ```R``` (Chapter \@ref(five)).
## Financialization {#twotwo}
\noindent Episodes of financial crisis have not ceased to increase after the "Golden Age" of capitalism. This capitalist phase comprises the period of the 1950s until the early 1970s, when major capitalist economies exhibited great economic performance (e.g., high growth rates and low inflation and unemployment). The end of this golden phase is linked to the "stagflation" of the 1970s. Financial markets deregulation was one of the implemented policies to deal with the dual problem of stagnation and inflation. Consequently, a new phenomenon sprouted with deregulated finance: financialization. In the beginning, in the early 1980s, it was restricted to the United States and the United Kingdom. Nevertheless, it did not take too long to spread worldwide [@hein2015b]. One of the well-known manifestations of the global expansion of this new financialized system is the carry trade activity.
Finance-dominated capitalism [@hein2015c] or financialization is defined, following Epstein's seminal work [-@epstein2005, \text{p.} 3], as "the increasing role of financial motives, financial markets, financial actors and financial institutions in the operation of the domestic and international economies." This is a very broad ("macro-level") definition, which helped to aggregate a significant body of literature and create a research agenda [@mader2020]. Table \@ref(tab:Table21) shows other definitions, based on three levels of analysis [@vanderzwan2014]: macro ("the emergence of a new regime of accumulation"), meso ("the ascendency of the shareholder value orientation") and micro ("the financialization of everyday life").
(ref:abel-cit1) @mader2020 [Table 1.1, \text{p.} 7]
(ref:abel-cit2) @krippner2005 [\text{p.} 174]
(ref:abel-cit3) @boyer2000 [\text{p.} 121]$^\bigstar$
(ref:abel-cit4) @tang2010 [\text{p.} 3]
(ref:abel-cit5) @palley2008 [\text{p.} 29]
(ref:abel-cit6) @aalbers2008 [\text{p.} 149]
(ref:abel-cit7) @stockhammer2004 [\text{p.} 720]
(ref:abel-cit8) @froud2000 [\text{p.} 104]
(ref:abel-cit9) @orhangazi2008 [\text{p.} 864]
(ref:abel-cit10) @froud2006 [\text{p.} 4]
(ref:abel-cit11) @martin2002 [\text{p.} 43]
```{r Table21, echo = FALSE, message=FALSE, warning=FALSE}
library(kableExtra)
library(tidyverse)
tab21 <- data.frame("Author" = c("(ref:abel-cit2)",
"(ref:abel-cit3)",
"(ref:abel-cit4)",
"(ref:abel-cit5)",
"(ref:abel-cit6)",
"(ref:abel-cit7)",
"(ref:abel-cit8)",
"(ref:abel-cit9)",
"(ref:abel-cit10)",
"(ref:abel-cit11)"),
"Definition of financialization" =
c("\``a pattern of accumulation in which profits accrue primarily through financial channels rather than through trade and commodity production\''",
"process by which \``all the elements of national demand bear the consequences of the dominance of finance\''",
"\``process [...] through which commodity prices became more correlated with prices of financial assets and with each other\''",
"\``(1) elevate the significance of the financial sector relative to the real sector; (2) transfer income from the real sector to the financial sector; and (3) contribute to increased income inequality and wage stagnation\''",
"\``capital switching from the primary, secondary or tertiary circuit to the quaternary circuit of capital [...]; that is, the rise of financial markets not for the facilitation of other markets but for the trade in money, credit, securities, etc.\''",
"\``increased activity of non-financial businesses on financial markets, [...] measured by the corresponding income streams\''",
"\``a new form of competition which involves a change in orientation towards financial results but also a kind of speed up in management work\''",
"\``designate[s] the changes that have taken place in the relationship between the non-financial corporate sector and financial markets\''",
"\``changes induced by the rhetoric of shareholder value [which] sets firms and households utopian objectives such as value creation by management intervention for giant firms or security through stock-market saving for households\''",
"\``insinuates an orientation toward accounting and risk management into all domains of life\''"),
"Main level of analysis" =
c("Macro", "Macro", "Macro", "Macro", "Macro", "Meso", "Meso", "Meso", "Meso-Micro", "Micro"))
colnames(tab21) <- c("Author", "Definition of financialization", "Main level")
kable(tab21, "latex", caption = "Main definitions of financialization", position = "!ht",
booktabs = T, escape = F) %>%
kable_styling(latex_options = c("scale_down")) %>%
column_spec(2, width = "8,5cm") %>%
footnote(
general = paste0("\\\\footnotesize{Adapted from (ref:abel-cit1). From their table notes: \``Selection based on articles carrying `financialization' or `financialisation' in title, and Google Scholar citations $>$ 500, last accessed Feb. 14, 2019; ${}^\\\\bigstar$derived, no explicit definition of financialization given and does not carry `financialization' in title.\''}"),
general_title = "\\\\footnotesize{Source:}",
footnote_as_chunk = T,
escape = F,
threeparttable = T)
```
More precisely, @mader2020 [\text{p.} 6] define each of these levels as the following: "macro-level approaches, which usually focus on the transformation of capitalist accumulation or changes in macroeconomic aggregates and often engage with a state/market-dichotomy in processes of financialization; meso-level analyses, which put (mostly non-financial) corporations center stage and examine issues of ownership and control as well as changing corporate relations with financial markets; and micro-level approaches, which highlight how (mostly) non-elite actors are implicated in a 'financialization of daily life,' zooming in on financial practices and rationalities in, for instance, saving and borrowing."
An analysis of the carry trade using these levels shows that it is inherently connected to financialization. Based on the macro-level approaches, this speculative activity gained (i) ground with the internationalization of financial markets and (ii) monetary magnitude with leverage. At the meso level, speculation by non-financial firms with derivatives is "rare" [@bartram2019]. Using a sample of S\&P 500 nonfinancial firms for 1993, @allayannis2001 show that firms use foreign currency derivatives for hedging purposes rather than speculative opportunities. Nonetheless, @bruno2017 [\text{p.} 741] find that "found evidence of divergence between emerging and advanced economy firms, with emerging economy firms being more susceptible to carry trades and the associated surrogate financial intermediation activities." Indeed, Brazil provides two recent and notorious examples of the problems generated by this facet of financialization, where non-financial firms seek profits from speculative finance. One of the examples is the Brazilian company Aracruz Celulose, which registered losses of U.S.\$2.13 billion in derivatives in the last quarter of 2008 [@zeidan2013]. Another example is Sadia, one of the biggest Brazilian food producers in 2008. Sadia booked a net loss of approximately U.S.\$ 1 billion in 2008 [@desouzamurcia2017], by turning itself to speculative investments in currency derivatives during the Brazilian carry trade boom.
>Talk of “carry trades” feels out of place in the context of nonfinancial firms, as carry trades are more commonly associated with financial institutions better equipped to take on financial exposures. However, if the nonfinancial firm comes from an emerging economy with capital controls that restricts cross-border financial transactions, the activities of nonfinancial firms take on greater importance in providing avenues to circumvent capital controls. [@bruno2017, \text{pp.} 704-705]
At the micro-level, we may not be far from seeing an increase in ordinary people's pursuit of carry trade investment strategies. The popularization of stock trading with apps like Robinhood and Acorns is an example of the recent developments of financialization of daily life. The dangers of speculative financial activity are increasing, notably when trading is handled as a game. This is the gamification^[By implementing "game design elements in non-game contexts" [@deterding2011, \text{p.} 2], gamification seeks the mimetism of games/entertainment in other areas. Hence, "since video games are designed with the primary purpose of entertainment, and since they can demonstrably motivate users to engage with them with unparalleled intensity and duration, game elements should be able to make other, non-game products and services more enjoyable and engaging as well" [@deterding2011, \text{p.} 1].] of finance. As shown by @heide2021 [\text{p.} 13], "With millions of unskilled investors flocking to easy-access smartphone-based brokerages with in-built gamified features, it is perhaps reasonable to be sceptical." Therefore, the carry trade strategy may be popularized in further developments of the gamification of financial markets.
In order to better understand the tendencies towards financialization, @hein2015c provide a comparative analysis of different theoretical approaches (the French Regulation School, the Social Structures of Accumulation [SSA] approach, and the contribution by several post-Keynesians authors, with particular emphasis on the long-run views provided by Hyman Minsky's contributions). "What these approaches have in common is the notion that capitalist development is embedded in social institutions and that there is a kind of interdependence between the set of institutions and economic development, each feeding back on the other." [@hein2015c, \text{p.} 7] While investigating the modern capitalism, each approach describes the period of financialization in a specific manner: (i) "finance-led growth regime" [@boyer2000] in the French Regulation School, (ii) "global neoliberal social structure of accumulation" [@tabb2010] in the SSA approach, (iii) "finance-dominated capitalism" [@hein2012] among post-Keynesians, and (iv) "money manager capitalism" for @minsky1996.
@hein2015c use a four-step pattern to compare these approaches. First, they sketch the common views regarding the basic structures. "[A]ll approaches consider ‘capitalist’ (Regulation School, SSA), ‘monetary production’ (post-Keynesians) or ‘financial’ (Minsky) economies to be inherently unstable and argue that these economies require stabilizing social institutions." [@hein2015c, \text{p.} 43] Based on a Marxian interpretation, the Regulation School and the SSA approach point to the class conflict (capital versus labor) in the production and distribution as the root for the instability. For post-Keynesians, based on their approach of the monetary production economy, institutions require "the need to cope with fundamental uncertainty, to provide stable monetary and financial relations, to constrain distribution conflict, and to stabilize aggregate demand in the short and in the long run." [@hein2015c, \text{p.} 43] For Minsky, institutions are undermined by human behavior in financial economies, where the paradox of stability holds (a stable period in the economy breeds an unstable one). Regarding institutional change, on the one hand, within an endogenous mechanism, the Regulation School, the SSA approach, and Minsky view the collapse of the economic system as a result of its success. On the other hand, for post-Keynesians, "institutional changes seem to be contingent on exogenous shocks, changing power relations and economic policy failures" [@hein2015c, \text{p.} 43].
Second, @hein2015c search for the explanation of the origin of financialization. The collapse of profitability in the "Fordism" or the "regulated capitalist SSA" are the reasons for the emergence of the financialization for the Regulation School and the SSA approach, respectively. For post-Keynesians, economic policy responses to the increasing inflation rates in the 1970s are related to the collapse of a social bargain/compromise of the period of the "Golden Age" (1950s-early 1970s). "Minsky’s approach differs from those previously outlined in that he views the transition towards money manager capitalism rather as a gradual process, driven by the stability of ‘paternalistic capitalism’, and based on his credo ‘stability breeds instability’ by increasing appetite for risk etc." [@hein2015c, \text{p.} 44]
Third, the different approaches present complementarities on their views of financialization's main characteristics and features, rather than fundamental differences [@hein2015c]. "In particular the Regulation School, the SSA approaches and the post-Keynesian contributions seem to agree that the financialization period is characterized by the deregulation and liberalization of national and international financial markets, goods markets and labour markets, by the reduction of government intervention in the market economy, by a rentier/shareholder–manager coalition dominating labour, by a pronounced shareholder value and short-term profitability orientation of firms at the expense of long-run profitable investments in capital stock, by redistribution of income from wages to broad profits, and among wages from direct labour to managers, and by increasing opportunities of creating household debt for consumption purposes, as well as structural changes in the banking sector through securitization, in particular." [@hein2015c, \text{pp.} 44-45] Minsky's approach is more concentrated on the financial economy, emphasizing the instability created by leverage, speculative and Ponzi financing, and frauds. More fundamentally, whereas Minsky's view claims a stronger role of government and central banks ("rescuer of last resort"), the other approaches characterize "financialization by downsizing governments" [@hein2015c, \text{p.} 45].
Fourth, @hein2015c explore the consequences of financialization for long-run economic and social development. They demonstrate that the approaches of the Regulation School and the SSA "seem to accept the post-Keynesian argument that, in particular, redistribution at the expense of (lower) wages during the financialization period has caused a major problem for aggregate demand" [@hein2015c, \text{p.} 45]. Post-Keynesians emphasize the different macroeconomic regimes^[Regarding Brazil and Switzerland, see @hartwig2013 and @tomio2020a, respectively.] or type of developments under the period of financialization that contribute to "inequality and global current account imbalances". Both are identified as "causes for the worldwide Great Recession^[Occurred between 2007 and 2009 [@maclean2015].]" [@hein2015c, \text{p.} 45] For Minsky, the "increasing instability potentials" [@hein2015c, \text{p.} 46] are essential to understand the possible negative spillovers of financialization on the long-run economic and social development of the world economy.
As a consequence of financialization, the disconnection between the monetary and real sides of the economy is increasing. As demonstrated by @lane2018, global external assets as a ratio of world GDP increased significantly from 1995 until 2007. By analyzing the international currency positions over 1990–2012, @benetrix2015 [\text{p.} S108] find that "the increase in the scale of international balance sheets (especially for advanced economies) means that a given exchange rate shift can now generate much larger cross-border wealth effects relative to GDP." Nevertheless, between 2007 and 2015,
>the growth in cross-border positions in relation to world GDP has come to a halt, reflecting primarily two factors. The first is much weaker capital flows to and from advanced economies, including financial centers, and in particular diminished cross-border activity by banks in advanced economies, including within the euro area. The second is an increase in the relative weight of emerging economies in global GDP, since these economies have lower ratios of external assets and liabilities to GDP relative to advanced economies. [@lane2018, \text{p.} 190]
One way of showing this is to divide the amount negotiated in foreign exchange markets (monetary side) by the amount needed for trade, given by the sum of exports and imports, and foreign direct investment, i.e., productive investment (real side)^[This indicator is similar to the ratios proposed by @mccauley2011 and Ramos [-@ramos2016; -@ramos2017]. Nonetheless, the use of the sum of trade and direct investment, as a daily mean, as the denominator in the ratio's equation is a novelty in the literature, to my knowledge.]. This ratio indicates how much the foreign exchange markets are disconnected from the real economy necessity of foreign exchange. Moreover, it also shows the strengthening of financialization in the global foreign exchange market. Paradoxically, the more disconnected they are, the monetary side becomes more harmful to the real side.
Apropos the world economy, Figure \@ref(fig:Figure21) illustrates the foreign exchange daily turnover (FDT) and the FDT ratio. The latter is given by dividing FDT by the sum of trade and direct investment. The source for the FDT data is the BIS Triennial Central Bank Survey, which "is the most comprehensive source of information on the size and structure of global foreign exchange (Forex or FX) and over-the-counter (OTC) derivatives markets" [@bankforinternationalsettlements2019, \text{p.} 3]. For the real side variables, data is gathered from the IMF's Balance of Payments and International Investment Position Statistics (BOP/IIP)^[Check Appendix (ref:appendixa1) for further details on the data.]. As shown in Figure \@ref(fig:Figure21), the ratio increased from 12.81 in 1986 to 42.57 in 2019^[Table \@ref(tab:TableA11) provides the FDT ratio for several countries in each period.]. There was a rapid increase in the ratio between the mid-1980s and mid-1990s. In the 2000s, the ratio declined quite significantly with a rebound from 2010 onward. The evolution of this ratio shows evidence of the extent of the disconnection from the reality caused by financialization. Moreover, the 2019 ratio demonstrates that the foreign exchange daily turnover exceeded the sum of trade and direct investment by roughly 43 times.
(ref:appendixa1) \@ref(appendixa1)
(ref:nyse) [@newyorkstockexchange2021]
```{r Figure21code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
# SOURCE FILE: plotnomics (PLOTS - Chapter 1.R)
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
library(cowplot)
#extrafont::font_import()
#font_import(paths = c('./Latin-Modern-Roman-fontfacekit/web fonts/latinmodernroman_10regular_macroman', prompt = F))
# manually install the font in the directory
#extrafont::loadfonts()
g1_option2_df <- structure(list(Date = structure(c(5844, 6940, 8035, 9131, 10227,
11323, 12418, 13514, 14610, 15706, 16801, 17897), class = "Date", tzone = "Europe/Paris"),
MULT = c(12.8105396770191, 30.829210360965, 36.5339934045687,
38.8141059079374, 39.1540693092515, 28.2835269487681, 28.3192697392836,
27.4422977887559, 32.1212310896478, 34.1263033775576, 37.041896515762,
42.572209599972), FDT = c(0.206, 0.7437, 1.115493796629,
1.63274928087, 2.099423166555, 1.704680257201, 2.608106343031,
4.281096095043, 5.045305541228, 6.685737173451, 6.513536541376,
8.300586371084)), row.names = c(NA, -12L), class = "data.frame")
g1_option2 <- g1_option2_df %>%
ggplot(aes(x = Date)) +
geom_line(aes(y = FDT, colour = "Forex daily turnover (FDT) [LHS]")) +
geom_line(aes(y = MULT/4.4, colour = "Ratio, FDT/(Trade + DI) [RHS]")) +
geom_hline(yintercept = 0) +
scale_y_continuous(expand = c(0, 0), limits = c(0,10), breaks = c(0, 2.5, 5, 7.5, 10),
sec.axis = sec_axis(~.*4.4, name = "Ratio, FDT/(Trade + DI)",
breaks = c(0, 11, 22, 33, 44))) +
scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = g1_option2_df$Date) +
theme_light() +
labs(y = "FDT, in trillion of U.S. dollars",
colour = "") +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
axis.text.x = element_text(size = 9))
```
```{r Figure21, out.width='0.99\\columnwidth', fig.height=4, fig.cap="Forex daily turnover (FDT) and ratio between FDT and the sum of daily trade and direct investment (DI), 1989-2019 \\\\ \\scriptsize \\textit{Source:} Bank for International Settlements (BIS) for the Forex daily turnover (FDT), using the net-gross basis. International Monetary Fund (IMF) for trade (sum of exports and imports of goods and services in U.S. dollars) and direct investment (sum of net acquisition of financial assets and net incurrence of liabilities in U.S. dollars). \\\\ \\scriptsize \\textit{Notes:} Since FDT series are daily means for April, the sum of trade and DI are divided by 252, which is a rule of thumb for the number of trading days in a year (ref:nyse). See Appendix (ref:appendixa1) for more details. LHS and RHS are the abbreviations for left-hand axis and right-hand axis, respectively.", fig.scap="Forex daily turnover (FDT) and ratio between FDT and the sum of daily trade and direct investment (DI), 1989-2019", fig.pos="!ht", fig.align="center", echo = FALSE, message=FALSE, warning=FALSE}
plot(g1_option2)
```
The global picture does not capture the specificities of the current international monetary system. By separating emerging/developing and developed economies, the FDT and FDT ratio differences are very significant. In Figure \@ref(fig:Figure22), emerging/developing economies show a volatile FDT ratio. In this same figure, there is the data for this group with the exclusion of Russia. With the exclusion of this outlier, the FDT ratio shows some stability in the period between 2001 and 2019. Similarly, in Figure \@ref(fig:Figure23), the FDT ratio for developed economies is quite stable, after removing the United Kingdom (outlier). Overall, the FDT ratio is much higher in developed countries than in emerging/developing economies by comparing both groups.
(ref:fig21) \@ref(fig:Figure21)
```{r Figure22code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
# SOURCE FILE: plotnomics (PLOTS - Chapter 1.R)
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
library(cowplot)
# EMERGING/DEVELOPING ECONOMIES ####
# AVOID ZEROS TO ACHIEVE A REASONABLE MEAN IN option2_plot_df1_ede
# TO ACHIEVE A LARGE NUMBER OF COUNTRIES, DF STARTS IN 2001 (EXCLUDING ZEROS)
gEDE_option2_df <- structure(list(Date = structure(c(11323, 12418, 13514, 14610,
15706, 16801, 17897), class = "Date", tzone = "Europe/Paris"),
MULT = c(18.2453122361336, 33.7003341083134, 40.3669509417965,
30.9628540659374, 32.5175138320924, 24.3423081710531, 22.9869146027438
), FDT = c(57.110089442, 91.833617545, 170.110917654, 183.618778521,
257.822634254, 221.395669838, 232.86791134)), row.names = c(NA,
7L), class = "data.frame")
gEDE_option2 <- gEDE_option2_df %>%
ggplot(aes(x = Date)) +
geom_line(aes(y = FDT, colour = "Forex daily turnover (FDT) [LHS]")) +
geom_line(aes(y = MULT*5.833333, colour = "Ratio, FDT/(Trade + DI) [RHS]")) +
geom_hline(yintercept = 0) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 280), breaks = c(0, 70, 140, 210, 280),
sec.axis = sec_axis(~./5.833333, name = "Ratio, FDT/(Trade + DI)",
breaks = c(0, 12, 24, 36, 48),
labels = scales::label_number(accuracy = 1))) +
scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = gEDE_option2_df$Date) +
theme_light() +
labs(y = "FDT, in billion of U.S. dollars",
colour = "",
title = "Emerging/Developing Economies") +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 9))
# EMERGING/DEVELOPING ECONOMIES (EXCL RUSSIA) ####
gEDE_option2_ER_df <- structure(list(Date = structure(c(11323, 12418, 13514, 14610,
15706, 16801, 17897), class = "Date", tzone = "Europe/Paris"),
MULT = c(8.65736377423453, 6.75135418591506, 7.08577921675199,
8.02023344681465, 8.70222940657051, 9.15712537606463, 8.14975235589123
), FDT = c(47.521470395, 62.042094487, 119.917982649, 141.961189703,
197.097404568, 176.298134707, 186.30556727)), row.names = c(NA,
7L), class = "data.frame")
gEDE_option2_ER <- gEDE_option2_ER_df %>%
ggplot(aes(x = Date)) +
geom_line(aes(y = FDT, colour = "Forex daily turnover (FDT) [LHS]")) +
geom_line(aes(y = MULT/0.1, colour = "Ratio, FDT/(Trade + DI) [RHS]")) +
geom_hline(yintercept = 0) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 200), breaks = c(0, 50, 100, 150, 200),
sec.axis = sec_axis(~.*0.1, name = "Ratio, FDT/(Trade + DI)")) +
scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = gEDE_option2_ER_df$Date) +
theme_light() +
labs(y = "FDT, in billion of U.S. dollars",
colour = "",
title = "Excluding Russia") +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 9))
# EMERGING/DEVELOPING ECONOMIES TOGETHER ####
gEDE_option2_legend <- get_legend(gEDE_option2)
gEDE_option2_wl <- plot_grid(gEDE_option2 + theme(legend.position = "none"),
gEDE_option2_ER + theme(legend.position = "none"),
ncol = 2, nrow = 1, align = "hv")
gEDE_option2_together <- plot_grid(gEDE_option2_wl,
gEDE_option2_legend,
ncol = 1,
rel_heights = c(1, .05))
```
```{r Figure22, out.width='0.99\\columnwidth', fig.height=3, fig.cap="FDT and ratio between FDT and the sum of daily trade and DI, emerging/developing economies (2001-2019) \\\\ \\scriptsize \\textit{Countries:} Brazil, Chile, Colombia, Hungary, India, Indonesia, Malaysia, Mexico, Peru, Philippines, Poland, Russia, Saudi Arabia, South Africa, Thailand, and Turkey. \\\\ \\scriptsize \\textit{Notes:} See Figure (ref:fig21) for more details.", fig.scap="FDT and ratio between FDT and the sum of daily trade and DI, emerging/developing economies (2001-2019)", fig.pos="!ht", fig.align="center", echo = FALSE, message=FALSE, warning=FALSE}
plot(gEDE_option2_together)
```
```{r Figure23code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
# SOURCE FILE: plotnomics (PLOTS - Chapter 1.R)
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
library(cowplot)
# DEVELOPED ECONOMIES ####
gAE_option2_df <- structure(list(Date = structure(c(11323, 12418, 13514, 14610,
15706, 16801, 17897), class = "Date", tzone = "Europe/Paris"),
MULT = c(29.0234046016014, 30.1278602803592, 34.2792057339901,
41.4969493070246, 42.3515348520138, 42.1843281616013, 49.0551884548242
), FDT = c(1598.9916432, 2442.200319052, 3949.653124672,
4709.284779659, 6239.765396615, 6098.637797142, 7730.641645626
)), row.names = c(NA, 7L), class = "data.frame")
gAE_option2 <- gAE_option2_df %>%
ggplot(aes(x = Date)) +
geom_line(aes(y = FDT, colour = "Forex daily turnover (FDT) [LHS]")) +
geom_line(aes(y = MULT*133.3333, colour = "Ratio, FDT/(Trade + DI) [RHS]")) + # 133.3333 = 2000/15
geom_hline(yintercept = 0) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 8000), breaks = c(0, 2000, 4000, 6000, 8000),
sec.axis = sec_axis(~./133.3333, name = "Ratio, FDT/(Trade + DI)",
breaks = c(0, 15, 30, 45, 60),
labels = scales::label_number(accuracy = 1))) +
scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = gAE_option2_df$Date) +
theme_light() +
labs(y = "FDT, in billion of U.S. dollars",
colour = "",
title = "Developed economies") +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 9))
# DEVELOPED ECONOMIES (EXCL UK) ####
gAE_option2_EUK_df <- structure(list(Date = structure(c(11323, 12418, 13514, 14610,
15706, 16801, 17897), class = "Date", tzone = "Europe/Paris"),
MULT = c(23.3161297159103, 23.9768539187336, 27.2439472979115,
29.1190833155553, 26.4793446542303, 29.0795191189122, 27.5829976372766
), FDT = c(1057.292274779, 1606.921000878, 2466.44320362,
2855.691204659, 3513.772877114, 3692.336969416, 4154.232645626
)), row.names = c(NA, 7L), class = "data.frame")
gAE_option2_EUK <- gAE_option2_EUK_df %>%
ggplot(aes(x = Date)) +
geom_line(aes(y = FDT, colour = "Forex daily turnover (FDT) [LHS]")) +
geom_line(aes(y = MULT*150, colour = "Ratio, FDT/(Trade + DI) [RHS]")) + # 133.3333 = 2000/15
geom_hline(yintercept = 0) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 4500), breaks = c(0, 1125, 2250, 3375, 4500),
sec.axis = sec_axis(~./150, name = "Ratio, FDT/(Trade + DI)",
breaks = c(0, 7.5, 15, 22.5, 30),
labels = scales::label_number(accuracy = 1))) +
scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = gAE_option2_EUK_df$Date) +
theme_light() +
labs(y = "FDT, in billion of U.S. dollars",
colour = "",
title = "Excluding United Kingdom") +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 9))
# DEVELOPED ECONOMIES TOGETHER ####
gAE_option2_legend <- get_legend(gAE_option2)
gAE_option2_wl <- plot_grid(gAE_option2 + theme(legend.position = "none"),
gAE_option2_EUK + theme(legend.position = "none"),
ncol = 2, nrow = 1, align = "hv")
gAE_option2_together <- plot_grid(gAE_option2_wl,
gAE_option2_legend,
ncol = 1,
rel_heights = c(1, .05))
```
```{r Figure23, out.width='0.99\\columnwidth', fig.height=3, fig.cap="FDT and ratio between FDT and the sum of daily trade and DI, developed economies (2001-2019) \\\\ \\scriptsize \\textit{Countries:} Australia, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Hong Kong SAR, Israel, Italy, Japan, Netherlands, New Zealand, Norway, Portugal, Singapore, Slovakia, South Korea, Spain, Sweden, Switzerland, United Kingdom, and United States. \\\\ \\scriptsize \\textit{Notes:} See Figure (ref:fig21) for more details.", fig.scap="FDT and ratio between FDT and the sum of daily trade and DI, developed economies (2001-2019)", fig.pos="!ht", fig.align="center", echo = FALSE, message=FALSE, warning=FALSE}
plot(gAE_option2_together)
```
As far as Brazil and Switzerland are concerned, they follow the same pattern shown by the emerging/developing and developed economies groups, respectively. In 1998, whereas the FDT ratio was 7.7 for Brazil, Switzerland presented a ratio equal to 88.67. In the following surveys, the ratios oscillated significantly for both countries. In the latest figures, the ratio for Brazil is 7.79 against 70.72 in Switzerland.
```{r Figure24code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
# SOURCE FILE: plotnomics (PLOTS - Chapter 1.R)
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
library(cowplot)
# BRAZIL ####
g3_option2_df <- structure(list(Date = structure(c(10227, 11323, 12418, 13514,
14610, 15706, 16801, 17897), class = "Date", tzone = "Europe/Paris"),
MULT = c(7.69893216379845, 8.71392267930845, 4.44954880583661,
3.59350359535904, 6.07305590198771, 6.22860460754997, 9.75677736264887,
7.79295972532668), FDT = c(5.127, 5.5285, 3.790017589, 5.761504646,
14.093575, 17.203152943, 19.747008045, 18.766380985)), row.names = 5:12, na.action = structure(1:4, .Names = c("1", "2", "3", "4"), class = "omit"), class = "data.frame")
g3_option2 <- g3_option2_df %>%
ggplot(aes(x = Date)) +
geom_line(aes(y = FDT, colour = "Forex daily turnover (FDT) [LHS]")) +
geom_line(aes(y = MULT/0.5, colour = "Ratio, FDT/(Trade + DI) [RHS]")) +
geom_hline(yintercept = 0) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 20), breaks = c(0, 5, 10, 15, 20),
sec.axis = sec_axis(~.*0.5, name = "Ratio, FDT/(Trade + DI)",
c(0, 2.5, 5, 7.5, 10))) +
scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = g3_option2_df$Date) +
theme_light() +
labs(y = "FDT, in billion of U.S. dollars",
colour = "",
title = "Brazil") +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 7))
# SWITZERLAND ####
g4_option2_df <- structure(list(Date = structure(c(6940, 8035, 9131, 10227, 11323,
12418, 13514, 14610, 15706, 16801, 17897), class = "Date", tzone = "Europe/Paris"),
MULT = c(82.8683053354893, 85.7149538912465, 89.973639160564,
88.6724129475075, 64.2213302485857, 51.2962404378213, 96.3109111563652,
78.35381293288, 59.7510998450479, 33.4613055531622, 70.7192081292915
), FDT = c(57, 68.0389, 88.432332024, 91.619135, 76.339157894,
85.34995537, 253.639157675, 249.452785167, 216.394034582,
156.43118268, 275.718643912)), row.names = 2:12, na.action = structure(c(`1` = 1L), class = "omit"), class = "data.frame")
g4_option2 <- g4_option2_df %>%
ggplot(aes(x = Date)) +
geom_line(aes(y = FDT, colour = "Forex daily turnover (FDT) [LHS]")) +
geom_line(aes(y = MULT*3, colour = "Ratio, FDT/(Trade + DI) [RHS]")) +
geom_hline(yintercept = 0) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 300), breaks = c(0, 75, 150, 225, 300),
sec.axis = sec_axis(~./3, name = "Ratio, FDT/(Trade + DI)",
breaks = c(0, 25, 50, 75, 100))) +
scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = g4_option2_df$Date) +
theme_light() +
labs(y = "FDT, in billion of U.S. dollars",
colour = "",
title = "Switzerland") +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 7))
# BRAZIL AND SWITZERLAND TOGETHER ####
gBS_option2_legend <- get_legend(g3_option2)
gBS_option2_wl <- plot_grid(g3_option2 + theme(legend.position = "none"),
g4_option2 + theme(legend.position = "none"),
ncol = 2, nrow = 1, align = "hv")
gBS_option2 <- plot_grid(gBS_option2_wl, gBS_option2_legend, ncol = 1, rel_heights = c(1, .05))
```
```{r Figure24, out.width='0.99\\columnwidth', fig.height=3, fig.cap="FDT and ratio between FDT and the sum of daily trade and DI, Brazil (1998-2019) and Switzerland (1989-2019) \\\\ \\scriptsize \\textit{Notes:} See Figure (ref:fig21) for more details.", fig.scap="FDT and ratio between FDT and the sum of daily trade and DI, Brazil (1998-2019) and Switzerland (1989-2019)", fig.pos="!ht", fig.align="center", echo = FALSE, message=FALSE, warning=FALSE}
plot(gBS_option2)
```
The BIS Triennial Bank Survey is very useful to show the evolution of financialization in the foreign exchange markets, using the FDT ratios. Additionally, it also shows the differences between emerging/developing and developed economies. While the former is often a group of target currencies in the carry trade strategy, the currencies from the latter group are instead funding or safe haven currencies. Nonetheless, the FDT ratio is not a precise indicator to proxy the carry trade. The next section presents a thorough explanation of the carry trade and its proxies.
Overall, uncoordinated monetary policy is one of the main drivers of the carry trade in our current financialized economic system. As conceptualized by @karwowski2019 [\text{p.} 1005], "[t]he financialisation of monetary policy [...] refers to the institutions and policies representing the monetary policy framework (typically with inflation targeting at its heart) and regulating financial markets to maintain financial stability." With the policy interest rate being the main tool to control inflation, this framework systematically sets up interest rate differentials on the global financial markets. Therefore, speculative capital can profit from higher yields in one country by borrowing with lower interest rates in another country. In order to curb this type of carry trade, central banks also use sterilization operations to absorb excess foreign capital flows [Gabor -@gabor2010; -@gabor2010a]. This monetary policy setup is more problematic for emerging/developing countries, which entered into a vicious cycle. According to @darista2018, by building up international reserves with the sterilization operations, emerging/developing countries' currencies appreciate, creating more incentive to the carry trade activity. For instance, one action prompted the reaction with continuous feedback while negatively impacting the domestic economy on this cycle.
## Carry trade {#twothree}
\noindent In the context of this thesis, carry trade is defined as a speculative investment strategy in the foreign exchange market that seeks profits from interest rate differentials and expected exchange rate depreciation and appreciation between countries/currencies. As developed in Subsection \@ref(twothreeone), this definition derives from the research design applied here. Moreover, Subsection \@ref(twothreetwo) highlights that the carry trade is a recent subject. As shown in Subsection \@ref(twothreethree), speculators take advantage of the invalidity of one of the major puzzles in international finance theory, the uncovered interest rate parity (UIP). Therefore, it is possible to profit from the carry trade because the expected exchange rate depreciation and appreciation does not offset interest rate differentials. Most importantly, carry trade must not be mistaken as a risk-less market arbitrage^[See more details in Subsection \@ref(twothreethree).]. In order to proxy this speculative investment activity, the volume of future contracts involving speculators is used, as explained in Subsection \@ref(twothreefour). Within the currency pair in the carry trade, one side represents a target currency while the other side is a funding currency. Subsection \@ref(twothreefive) shows that this currency classification may change accordingly to the interest rate differentials.
### Definition {#twothreeone}
\noindent A precise definition of the carry trade is problematic. As indicated by @gagnon2007 [\text{p.} 2]: "[t]here is no generally accepted definition of what constitutes a carry trade." A "useful" and comprehensive definition of carry trade would be “any investment strategy that involves shifting out of low-interest-rate assets and into anything else – like emerging-market debt, equities, real estate or commodities.” [@frankel2008, \text{p.} 41] In this sense, “carry trade could describe the behavior of any trader seeking to maximize returns on his portfolio”. [@gagnon2007, \text{p.} 2] Narrowing the definition down, “carry trade refers to a class of trading strategies that exploit predictable cross-country differences in returns.” [@evans2017, \text{p.} 4]
For @lee2020 [\text{p.} 6], the "carry" is the "regular stream of income or accounting profits" produced by the engagement of the trader on this speculative investment strategy. "The classic finance carry trade takes place in the foreign exchange market, when a trader borrows in a low interest rate currency and invests the proceeds in another, higher-yielding currency." [@lee2020, \text{p.} 6] @frankel2008 [\text{p.} 40] emphasizes another meaning of the "carry" with a simple example: "In the narrowest sense of the carry trade, the speculator borrows in yen, converts the proceeds to New Zealand dollars, and invests in securities denominated in those dollars. The New Zealand assets are the ones being 'carried,' much as a Toyota dealer might carry an inventory of Camrys financed with a bank loan."
The classic finance carry trade is also known as the *currency* carry trade. Thence, hereafter, carry trade and currency carry trade are used interchangeably. @bakshi2013 [\text{p.} 139]'s definition goes into this direction: "Currency carry trade strategies involve borrowing in countries with low interest rates and investing in the currencies of countries that offer high interest rates." Otherwise, there is the *equity* carry trade, as investigated by @cenedese2016, @koijen2018 and @girardin2019. It is defined as "[t]he profit opportunities from selling the low-return domestic equities and buying the high-return foreign ones. As opposed to currency carry trades which target interest rate discrepancies in different countries, equity carry trades track different countries’ equity return differentials." [@girardin2019, \text{p.} 422] There are also other examples of carry trades: bond carry trade, yield-curve carry trade, commodity carry trade, credit carry trade and diversified carry trade [@pedersen2015, \text{pp.} 187-188].
For the carry trade practitioner, "[c]arry is the amount of interest you earn or pay when you own or short a currency." [@donnelly2019, \text{p.} 42] The notion of short and long positioning is essential here. Normally, a trader would go "short (betting the foreign exchange value will fall) in a low-interest rate currency like the Japanese yen, while simultaneously going long (betting the foreign exchange value will rise) in a high-interest rate currency like the New Zealand dollar."^["If you have the opposite position — long the low-yielder and short the high-yielder — the interest-rate differential is against you, and it is known as the *cost of carry*." [@brooks2015, \text{p.} 191]] [@frankel2008, \text{p.} 40] Going into the details, @donnelly2019 [\text{p.} 20] says that
>In any financial market, long is the position where you own something, betting that its price will rise. Short is a position where you sell something you dont't own, expecting it to fall. In FX, every currency trade is both a long and a short---you are always selling one currency and buying another.
>For example, if you go long EURUSD, you own euros and owe dollars, hoping that the euro will go up against the dollar. If you are short EURUSD, you make money when the euro goes down.
Regarding the yields, they derive from the central bank policy rates. By deriving from the policy rate, other rates are also important: overnight rate and "2-year, 5-year, or 10-year yields." [@donnelly2019, \text{p.} 43] Nonetheless, the policy rate is the most important, "since there is a strong relationship between yields all along the curve" [@donnelly2019, \text{p.} 43]. Thus, monetary policy is a key factor in understanding the carry trade activity. As highlighted by @donnelly2019 [\text{p.} 82], "[i]nterest rates are the most important variable driving FX markets much of the time and they tend to be a product of central bank policy." More importantly, the influence of main central banks on the carry trade goes beyond the interest rate, as they may exert a "structural power"^[It is the "power to shape and mould the structures of production, knowledge, security and credit within which others have no choice but to live if they are to participate in the world market economy" [@strange1997, \text{p.} 67]. In this sense, by holding this structural power, the monetary policy (notably, the interest rate policy) applied by main central banks create a restriction for other central banks' monetary policy. This is the fundamental argument of the political economy of the carry trade, which is further developed in Section \@ref(twofour) and Chapter \@ref(five).] [@strange1997].
The simple fact of being a high interest rate currency (i.e., paying a high short-term yield) is not enough to integrate the carry trade in the global financial markets. @kritzer2012 [\text{p.} 96] highlights some reasons why not every emerging market currency is necessarily a target currency:
> Emerging market currencies represent the primary targets for carry traders since their corresponding short-term interest rates are perennially high. Their industrialized counterparts, on the flipside, are known for low rates and are better utilized on the short end of the carry trade as funding currencies. Of course, emerging market currencies are also plagued by higher volatility, monetary instability, lower liquidity, and logistical issues related to trading them. The benchmark interest rates of Angola and Kenya, for example, are perennially among the highest in the world, but, for many reasons, their currencies are not well suited for carry trading, let alone normal currency speculation.
Another key element for this integration is the degree of currency internationalization. @kenen2011 [\text{p.} 9] defines "[a]n international currency is one that is used and held beyond the borders of the issuing country, not merely for transactions with that country’s residents, but also, and importantly, for transactions between non-residents." As shown by @kaltenbrunner2018 [\text{p.} 13]'s interviews with foreign exchange market participants in Brazil and London, "Australian dollar, the Mexican peso, the Turkish lira, the New Zealand dollar and the South African rand (in order of frequency of mentioning)" are the main emerging market currencies. Table \@ref(tab:Table22) presents a list with the emerging market currencies "most commonly traded by global speculators." [@donnelly2019, \text{p.} 42] Similarly, the same currencies appear on the ranking provided by the @bankforinternationalsettlements2021b, using data on the turnover of OTC foreign exchange instruments^[Appendix \@ref(appendixa2) provides more details.].
(ref:abel-tab22) @donnelly2019 [Figure 4.4, \text{p.} 42]
(ref:abel-tab22n) @donnelly2019 [\text{p.} 42]
```{r Table22, echo = FALSE, message=FALSE, warning=FALSE}
library(kableExtra)
library(tidyverse)
tab22 <- data.frame("Asia" =
c("China offshore spot (CNH)",
"Chinese yuan (renminbi) (CNY)",
"Republic of Korean won (KRW)",
"Singapore dollar (SGD)",
"Indian rupee (INR)",
"Malaysian ringgit (MYR)",
"Philippine peso (PHP)",
"Taiwan dollar (TWD)",
"Thai baht (THB)",
"Indonesian rupiah (IDR)"),
"Latin America" =
c("Mexican new peso (MXN)",
"Brazilian real (BRL)",
"Chilean peso (CLP)",
"Colombian peso (COP)",
"Peruvian new sol (PEN)",
" ",
" ",
" ",
" ",
" "),
"Other emerging" =
c("South African rand (ZAR)",
"Turkish lira (TRY)",
"Russian ruble (RUB)",
"Hungarian forint (HUF)",
"Polish new zloty (PLN)",
"Israeli shekel (ILS)",
"Czech koruna (CZK)",
" ",
" ",
" "),
check.names = F)
tab22[1:4,1] <- cell_spec(tab22[1:4,1], bold = T)
tab22[1:5,2] <- cell_spec(tab22[1:5,2], bold = T)
tab22[1:2,3] <- cell_spec(tab22[1:2,3], bold = T)
options(knitr.kable.NA = '')
kable(tab22, "latex", caption = "Main emerging market currencies, ranked by liquidity, volume and popularity", position = "!ht",
booktabs = T, escape = F, linesep = " ") %>%
kable_styling(latex_options = c("scale_down"), font_size = 10) %>%
column_spec(2:3, width = "4,75cm") %>%
column_spec(1, width = "5,75cm") %>%
footnote(
general = paste0("\\\\footnotesize{$Source$: Adapted from (ref:abel-tab22). \\\\newline \\\\textit{Notes:} The most actively traded currencies are in bold. (ref:abel-tab22n) clarifies that \\``[t]he rankings are my informed but subjective opinion.\\'' In addition, the ZAR is incorrectly included as 'emerging Europe' in (ref:abel-tab22). This was corrected by changing the name to 'other emerging.' }"),
general_title = "",
footnote_as_chunk = T,
escape = F,
threeparttable = T)
```
Regardless of the presence of possible profits with interest rate differentials, the carry trade is not always profitable. The expected exchange rate volatility is also at the core of this speculative activity. As mentioned by @pedersen2015 [\text{p.} 185], "currency moves sometimes reduce the carry trade profit and sometimes add to the profit, and these profits and losses roughly balance out on average." There are market adages among traders in this sense. "Carry trades go up the escalator and down the elevator." [@donnelly2019, \text{p.} 43] Similarly, "[t]he carry trade goes up by the stairs and down by the elevator." [@pedersen2015, \text{p.} 185] Or, with an emphasis on the rollover, carry trade is "known as 'picking up nickels in front of a steam roller." [@donnelly2019, \text{p.} 43]
These sayings are related to the elevated risk of the carry trade. Events of sudden unwind of carry trade operations are known for their colossal impact on exchange rates^[As an illustration of these events, @donnelly2019 [\text{p.} 43] shows that the "AUDJPY fall from 107 to 86 in about one month in the Summer of 2007" and "the pair dropped all the way from 105.00 to 60.00 in 2008."] [i.e., currency crash, as developed by @brunnermeier2008]. Overall, globalized financial markets with high capital mobility are a central piece in this complex puzzle. "Concluding transactions on the forward (or futures) market is simple, flexible, incurs low transaction costs and is available for the general public." [@darvas2009, \text{p.} 945] Another attractive feature of the carry activity to traders is leverage. Therefore, profits can be exponentiated, as well as losses. Notably, with the daily rollover mechanism, leveraged carry trades may ignite panic movements in foreign exchange markets leading to currency crashes.
### Trends on academic and popular interests {#twothreetwo}
\noindent In academic research, the carry trade is a relatively recent subject. According to a search on Google Ngrams^[It is an online search engine (https://books.google.com/ngrams) to gather and plot data on the frequency of appearances of a specific keyword or phrase on Google Books (https://books.google.com). It is a useful tool to capture the usage of a term in books from the 1500s until 2019. @shiller2020 provides an example of its usage by researchers in Economics.], the usage of the term *carry trade* started increasing after the expansion of research on the *uncovered interest (rate) parity* (UIP)^[See Subsection \@ref(twothreethree) for further insights on this relationship. @moosa2009 [\text{p.} 5] coined a useful term to define the carry trade: "uncovered interest arbitrage".] around the 1980s (see Figure \@ref(fig:Figure25)). Previously, the presence of *carry trade* on books is mainly related to research on trade, where carry takes the form of the verb^[As an example: "In its regular publications the chamber finds it to advantage to list trade opportunities and to carry trade advertisements." [@foreigncommercedepartmentchamberofcommerceoftheunitedstates1931, \text{p.} 35]]. Figure \@ref(fig:Figure25) shows the 2000s as the period when carry trade gained notoriety, with a peak of uses in 2010. Similarly, in the 2000s, monetary authorities increased their interest on carry trade. For example, the first time the word "carry trade" appears in a BIS annual report is in the 69$^{th}$ report, which comprises the period 1998/99 [@bankforinternationalsettlements1999]. Moreover, one of the seminal papers by central bankers on the subject was published in 2007 [i.e., @galati2007].
(ref:fig25) @googlebooksngramviewer2021.
```{r Figure25code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
library(ngramr)
library(ggplot2)
ng <- ngram(c("carry trade",
"uncovered interest parity",
"uncovered interest rate parity"),
year_start = 1970)
ng1 <-
ggplot(ng, aes(x=Year, y=Frequency, colour=Phrase)) +
geom_line() +
scale_y_continuous(expand = c(0,0),
labels = scales::percent_format(accuracy=.0000001)) +
scale_x_continuous(expand = c(0,0),
breaks = c(seq(1970, 2020, by = 5), 2019)) +
theme_light() +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
legend.title = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 7, hjust = 0.8))
```
```{r Figure25, out.width='0.99\\columnwidth', fig.height=3, fig.cap="Frequency of appearance of the keywords \\textit{carry trade} and \\textit{uncovered interest (rate) parity}, 1970-2019 \\\\ \\scriptsize \\textit{Source:} Data obtained from (ref:fig25)", fig.scap="Frequency of appearance of the keywords \\textit{carry trade} and \\textit{uncovered interest (rate) parity}, 1970-2019", fig.pos="!ht", fig.align="center", echo = FALSE, message=FALSE, warning=FALSE}
plot(ng1)
```
Although @doskov2015 find evidence of profitable carry trades dating back to 1901, most authors focus on the period after the collapse of the Bretton Woods System in 1971. More recently, as shown in Figure \@ref(fig:Figure26), academic research on carry trade began exploring specific currencies. The *yen carry trade* firstly appeared in the 1990s. Moreover, "post 1993 the Japanese yen and Swiss franc have been funding currencies with low interest rates until today, a period covering two decades." [@doskov2015, \text{p.} 373] In the 2000s, the *yen carry trade* peaked its popularity. This is a consequence of some specific characteristics related to the Japanese economy, e.g., interest rates close to zero and "market actors ranging from Japanese housewives to sophisticated hedge funds" [@krugman2018, \text{p.} 373] By spreading globally to other currencies, the terms *currency carry trade* and *dollar carry trade* have been increasing their presence in academic research since the 2000s.
(ref:fig26) @googlebooksngramviewer2021a.
```{r Figure26code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
library(ngramr)
library(ggplot2)
ng <- ngram(c("dollar carry trade",
"yen carry trade",
"currency carry trade"),
year_start = 1990)
ng2 <-
ggplot(ng, aes(x=Year, y=Frequency, colour=Phrase)) +
geom_line() +
scale_y_continuous(expand = c(0,0),
labels = scales::percent_format(accuracy=.0000001)) +
scale_x_continuous(expand = c(0,0),
breaks = c(seq(1970, 2020, by = 5), 2019)) +
theme_light() +
theme(legend.position = "bottom",
legend.direction = "horizontal",
legend.background = element_blank(),
legend.title = element_blank(),
axis.title.x = element_blank(),
panel.grid.minor = element_blank(),
text = element_text(family = "LM Roman 10"),
plot.title = element_text(hjust = 0.5, face = "bold", size = 10),
axis.text.x = element_text(size = 7, hjust = 0.8))
```
```{r Figure26, out.width='0.99\\columnwidth', fig.height=3, fig.cap="Frequency of appearance of the keywords \\textit{currency carry trade}, \\textit{dollar carry trade} and \\textit{yen carry trade}, 1990-2019 \\\\ \\scriptsize \\textit{Source:} Data obtained from (ref:fig26)", fig.scap="Frequency of appearance of the keywords \\textit{currency carry trade}, \\textit{dollar carry trade} and \\textit{yen carry trade}, 1990-2019", fig.pos="!ht", fig.align="center", echo = FALSE, message=FALSE, warning=FALSE}
plot(ng2)
```
(ref:fig27) "currency carry trade" [@googletrends2021b], "dollar carry trade" [@googletrends2021c] and "yen carry trade" [@googletrends2021d].
According to Google Trends' interest over time^["Numbers represent search interest relative to the highest point on the chart for the given region and time[: ...] 100 is the peak popularity for the term[, ...] 50 means that the term is half as popular[, and ...] 0 means there was not enough data for this term." [@googletrends2021a]], there are three well-distinguished moments for the number of Web searches for *currency carry trade*, *dollar carry trade* and *yen carry trade* (see Figure \@ref(fig:Figure27)). First, the peak in Web searches for *currency carry trade* occurred at the beginning of 2004. After "the 1990s carry bubble", the Japanese yen started a new bubble in 2004 with "very little cost to borrow and very low volatility (thanks to BOJ extreme intervention), with seemingly no risk of appreciating" [@lee2020, \text{p.} 26]. The following well-defined moment takes place with the burst of this new carry bubble. Additionally, the number of Web searches for *yen carry trade* culminated in March 2007. With the initial signs of the GFC, the unwind of Japanese yen-funded carry trade explodes. Last but not least, the searches for the term *dollar carry trade* reached their highest point in September 2009. This is a consequence of the funding role assumed by the U.S. dollar, which interest rate was at the record-low level (0.50 bp) after the 1950s [@internationalmonetaryfund2021a]. With currencies altering their role as funding or target throughout time, the interest in the carry trade will persist while the UIP remains invalid.
```{r Figure27code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
#library(gtrendsR)
library(ggplot2)
#library(lubridate)
library(tidyverse)
#gt_cur <- gtrends(keyword = "currency carry trade",
# time = "all")
#gt_jap <- gtrends(keyword = "yen carry trade",
# time = "all")
#gt_dol <- gtrends(keyword = "dollar carry trade",
# time = "all")
#gt_all <- rbind(#gt$interest_over_time,
# gt_cur$interest_over_time,
# gt_jap$interest_over_time,
# gt_dol$interest_over_time) %>%
# mutate(date = as.Date(date))
gt_all <- structure(list(date = structure(c(12418, 12449, 12478, 12509,
12539, 12570, 12600, 12631, 12662, 12692, 12723, 12753, 12784,
12815, 12843, 12874, 12904, 12935, 12965, 12996, 13027, 13057,
13088, 13118, 13149, 13180, 13208, 13239, 13269, 13300, 13330,
13361, 13392, 13422, 13453, 13483, 13514, 13545, 13573, 13604,
13634, 13665, 13695, 13726, 13757, 13787, 13818, 13848, 13879,
13910, 13939, 13970, 14000, 14031, 14061, 14092, 14123, 14153,
14184, 14214, 14245, 14276, 14304, 14335, 14365, 14396, 14426,
14457, 14488, 14518, 14549, 14579, 14610, 14641, 14669, 14700,
14730, 14761, 14791, 14822, 14853, 14883, 14914, 14944, 14975,
15006, 15034, 15065, 15095, 15126, 15156, 15187, 15218, 15248,
15279, 15309, 15340, 15371, 15400, 15431, 15461, 15492, 15522,
15553, 15584, 15614, 15645, 15675, 15706, 15737, 15765, 15796,
15826, 15857, 15887, 15918, 15949, 15979, 16010, 16040, 16071,
16102, 16130, 16161, 16191, 16222, 16252, 16283, 16314, 16344,
16375, 16405, 16436, 16467, 16495, 16526, 16556, 16587, 16617,
16648, 16679, 16709, 16740, 16770, 16801, 16832, 16861, 16892,
16922, 16953, 16983, 17014, 17045, 17075, 17106, 17136, 17167,
17198, 17226, 17257, 17287, 17318, 17348, 17379, 17410, 17440,
17471, 17501, 17532, 17563, 17591, 17622, 17652, 17683, 17713,
17744, 17775, 17805, 17836, 17866, 17897, 17928, 17956, 17987,
18017, 18048, 18078, 18109, 18140, 18170, 18201, 18231, 18262,
18293, 18322, 18353, 18383, 18414, 18444, 18475, 18506, 18536,
18567, 18597, 18628, 18659, 18687, 18718, 18748, 18779, 12418,
12449, 12478, 12509, 12539, 12570, 12600, 12631, 12662, 12692,
12723, 12753, 12784, 12815, 12843, 12874, 12904, 12935, 12965,
12996, 13027, 13057, 13088, 13118, 13149, 13180, 13208, 13239,
13269, 13300, 13330, 13361, 13392, 13422, 13453, 13483, 13514,
13545, 13573, 13604, 13634, 13665, 13695, 13726, 13757, 13787,
13818, 13848, 13879, 13910, 13939, 13970, 14000, 14031, 14061,
14092, 14123, 14153, 14184, 14214, 14245, 14276, 14304, 14335,
14365, 14396, 14426, 14457, 14488, 14518, 14549, 14579, 14610,
14641, 14669, 14700, 14730, 14761, 14791, 14822, 14853, 14883,
14914, 14944, 14975, 15006, 15034, 15065, 15095, 15126, 15156,
15187, 15218, 15248, 15279, 15309, 15340, 15371, 15400, 15431,
15461, 15492, 15522, 15553, 15584, 15614, 15645, 15675, 15706,
15737, 15765, 15796, 15826, 15857, 15887, 15918, 15949, 15979,
16010, 16040, 16071, 16102, 16130, 16161, 16191, 16222, 16252,
16283, 16314, 16344, 16375, 16405, 16436, 16467, 16495, 16526,
16556, 16587, 16617, 16648, 16679, 16709, 16740, 16770, 16801,
16832, 16861, 16892, 16922, 16953, 16983, 17014, 17045, 17075,
17106, 17136, 17167, 17198, 17226, 17257, 17287, 17318, 17348,
17379, 17410, 17440, 17471, 17501, 17532, 17563, 17591, 17622,
17652, 17683, 17713, 17744, 17775, 17805, 17836, 17866, 17897,
17928, 17956, 17987, 18017, 18048, 18078, 18109, 18140, 18170,
18201, 18231, 18262, 18293, 18322, 18353, 18383, 18414, 18444,
18475, 18506, 18536, 18567, 18597, 18628, 18659, 18687, 18718,
18748, 18779, 12418, 12449, 12478, 12509, 12539, 12570, 12600,
12631, 12662, 12692, 12723, 12753, 12784, 12815, 12843, 12874,
12904, 12935, 12965, 12996, 13027, 13057, 13088, 13118, 13149,
13180, 13208, 13239, 13269, 13300, 13330, 13361, 13392, 13422,
13453, 13483, 13514, 13545, 13573, 13604, 13634, 13665, 13695,
13726, 13757, 13787, 13818, 13848, 13879, 13910, 13939, 13970,
14000, 14031, 14061, 14092, 14123, 14153, 14184, 14214, 14245,
14276, 14304, 14335, 14365, 14396, 14426, 14457, 14488, 14518,
14549, 14579, 14610, 14641, 14669, 14700, 14730, 14761, 14791,
14822, 14853, 14883, 14914, 14944, 14975, 15006, 15034, 15065,
15095, 15126, 15156, 15187, 15218, 15248, 15279, 15309, 15340,
15371, 15400, 15431, 15461, 15492, 15522, 15553, 15584, 15614,
15645, 15675, 15706, 15737, 15765, 15796, 15826, 15857, 15887,
15918, 15949, 15979, 16010, 16040, 16071, 16102, 16130, 16161,
16191, 16222, 16252, 16283, 16314, 16344, 16375, 16405, 16436,
16467, 16495, 16526, 16556, 16587, 16617, 16648, 16679, 16709,
16740, 16770, 16801, 16832, 16861, 16892, 16922, 16953, 16983,
17014, 17045, 17075, 17106, 17136, 17167, 17198, 17226, 17257,
17287, 17318, 17348, 17379, 17410, 17440, 17471, 17501, 17532,
17563, 17591, 17622, 17652, 17683, 17713, 17744, 17775, 17805,
17836, 17866, 17897, 17928, 17956, 17987, 18017, 18048, 18078,
18109, 18140, 18170, 18201, 18231, 18262, 18293, 18322, 18353,
18383, 18414, 18444, 18475, 18506, 18536, 18567, 18597, 18628,
18659, 18687, 18718, 18748, 18779), class = "Date"), hits = c("0",
"0", "100", "0", "0", "0", "72", "0", "0", "0", "0", "0", "0",
"0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0",
"0", "0", "0", "0", "0", "0", "0", "0", "23", "0", "20", "22",
"19", "59", "0", "0", "53", "0", "16", "15", "14", "15", "13",
"27", "37", "13", "0", "0", "0", "0", "45", "41", "32", "22",
"0", "0", "0", "0", "0", "9", "9", "9", "0", "32", "8", "40",
"7", "23", "21", "14", "7", "0", "0", "13", "6", "0", "6", "18",
"5", "6", "21", "11", "5", "11", "21", "10", "10", "0", "5",
"5", "21", "18", "4", "13", "12", "17", "16", "0", "0", "11",
"11", "0", "3", "11", "3", "13", "0", "7", "10", "0", "0", "21",
"6", "9", "9", "9", "6", "9", "6", "0", "10", "10", "9", "6",
"21", "0", "14", "3", "11", "6", "5", "6", "3", "13", "5", "10",
"10", "8", "8", "5", "8", "5", "8", "8", "0", "3", "11", "3",
"3", "8", "5", "5", "7", "8", "5", "3", "10", "5", "8", "10",
"10", "2", "7", "5", "9", "9", "18", "2", "2", "0", "5", "7",
"5", "9", "9", "0", "9", "5", "11", "5", "4", "11", "4", "8",
"8", "4", "6", "10", "0", "7", "5", "2", "2", "0", "0", "2",
"4", "0", "2", "9", "6", "8", "12", "3", "0", "22", "0", "0",
"0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "12", "0",
"0", "0", "0", "0", "0", "0", "0", "0", "0", "9", "8", "0", "7",
"8", "0", "0", "0", "6", "0", "13", "27", "17", "100", "21",
"14", "19", "28", "84", "30", "31", "37", "16", "28", "22", "10",
"3", "13", "7", "3", "3", "12", "35", "20", "17", "0", "11",
"2", "3", "5", "5", "0", "2", "7", "4", "8", "0", "0", "4", "6",
"6", "4", "6", "2", "0", "2", "10", "2", "2", "4", "0", "14",
"3", "3", "1", "0", "3", "1", "4", "2", "1", "8", "4", "3", "1",
"2", "2", "0", "1", "2", "2", "1", "1", "2", "1", "3", "2", "2",
"6", "2", "3", "3", "0", "2", "2", "1", "2", "0", "4", "0", "0",
"2", "2", "2", "2", "2", "2", "1", "0", "0", "1", "1", "1", "2",
"1", "1", "1", "0", "1", "0", "4", "0", "3", "1", "2", "0", "1",
"3", "0", "1", "1", "2", "4", "2", "1", "1", "1", "1", "1", "0",
"1", "1", "0", "1", "1", "0", "1", "1", "1", "1", "1", "0", "1",
"0", "2", "0", "0", "1", "1", "1", "0", "2", "0", "1", "1", "0",
"0", "0", "1", "<1", "1", "<1", "0", "0", "1", "1", "2", "1",
"0", "0", "1", "1", "1", "1", "1", "0", "0", "0", "0", "0", "0",
"0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0",
"0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "25",
"0", "0", "0", "0", "0", "0", "0", "16", "17", "0", "0", "0",
"28", "0", "24", "36", "0", "0", "11", "0", "11", "0", "11",
"10", "0", "0", "17", "0", "27", "8", "9", "8", "0", "8", "0",
"8", "0", "7", "34", "100", "47", "12", "38", "18", "6", "12",
"0", "12", "6", "5", "10", "0", "0", "5", "5", "13", "9", "0",
"0", "4", "4", "12", "4", "8", "0", "7", "7", "3", "4", "0",
"0", "0", "0", "3", "3", "3", "0", "3", "3", "0", "0", "0", "3",
"0", "3", "0", "0", "0", "0", "0", "5", "2", "2", "0", "0", "0",
"0", "3", "0", "5", "3", "5", "0", "5", "0", "2", "0", "7", "5",
"2", "2", "2", "0", "0", "5", "2", "5", "2", "2", "0", "0", "0",
"4", "0", "4", "0", "2", "2", "0", "4", "7", "2", "2", "0", "0",
"0", "0", "0", "0", "0", "0", "4", "0", "2", "2", "2", "2", "0",
"0", "0", "0", "0", "0", "0", "0", "4", "2", "0", "0", "0", "2",
"0", "2", "2", "2", "5", "2", "0", "0", "0", "3", "2", "0", "2",
"2", "0", "7", "0", "0"), keyword = c("currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "currency carry trade",
"currency carry trade", "currency carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "yen carry trade", "yen carry trade", "yen carry trade",
"yen carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade", "dollar carry trade", "dollar carry trade",
"dollar carry trade"), geo = c("world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",
"world", "world", "world", "world", "world", "world", "world",