-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03-granger.Rmd
1250 lines (1148 loc) · 86.7 KB
/
03-granger.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:keynes-quote)', include=knitr::is_latex_output()}
We must recognise, I think, that there can be a real divergence of interest; and we must not expect of central banks a degree of international disinterestedness far in advance of national sentiment and of the behaviour of the other organs of national government.
```
(ref:keynes-quote) --- @keynes1978 [\text{p.} 257]
# Carry trade in developing and developed countries: A Granger causality analysis with the Toda-Yamamoto approach^[This chapter is a slightly modified version of my article published in the journal Economics Bulletin [see @tomio2020].] {#three}
\minitoc <!-- this will include a mini table of contents-->
## Introduction {#threeone}
\noindent Due to the increased interconnectedness of global financial markets at the end of the 20^th^ century and the beginning of the 21^st^ century, interest rate differentials among countries have fostered speculative capital flows seeking higher yields. Central bankers worldwide set their base interest rate accordingly with their mission. Every country has its singularity and characteristics, which demands a unique set of monetary policies. In this sense, some countries are obliged to set high interest rates (usually developing and underdeveloped countries), while others present low interest rates (notably, developed countries). Speculators profit from this type of structure to seek financial gains, contradicting what is expected by the uncovered interest rate parity (UIP), one of the fundamental theories of international finance.
Currency speculation is not a new phenomenon, showing its first institutional developments in the Middle Ages [@accominotti2016]. Foreign exchange markets (Forex or FX) have augmented their size significantly in recent decades. The financialization of the world economy has led the daily turnover in Forex markets to surpass 40 times the daily amount of world trade of goods in U.S. dollars in 2019, as shown in Figure \@ref(fig:Figure31). In 1989, the ratio FX to trade was 21, highlighting the strengthening of financialization in Forex markets during the last two decades.
```{r Figure31code, tab.cap = NULL, echo = FALSE, message=FALSE, warning=FALSE}
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
#BIS TRIENNIAL DATA
#CHECK ORIGINAL FOLDER FOR THE WHOLE CODE (DATA)
FIG1 <- structure(list(Year = structure(c(7003, 8099, 9194, 10290, 11386,
12482, 13577, 14673, 15769, 16865, 17960), class = "Date"), DT = c(0.54,
0.82, 1.18, 1.53, 1.24, 1.93, 3.32, 3.97, 5.36, 5.07, 6.6), TR = c(21.32,
26.3, 28.77, 33.24, 23.58, 25.75, 30, 32.13, 33.91, 38.6, 41.86
)), row.names = c(NA, -11L), class = "data.frame")
g1 <- ggplot(FIG1, aes(x = Year))
g1 <- g1 + geom_line(aes(y = DT, colour = "Forex daily turnover (LHS)"))
g1 <- g1 + geom_line(aes(y = TR/7.5, colour = "Ratio, FX/Trade (RHS)"))
g1 <- g1 + geom_hline(yintercept = 0)
g1 <- g1 + scale_y_continuous(expand = c(0, 0), limits = c(0, 7), sec.axis = sec_axis(~.*7.5, name = "Ratio, FX/Trade", breaks = c(0, 15, 30, 45)))
g1 <- g1 + scale_x_date(expand = c(0, 0), date_labels = "%Y", breaks = FIG1$Year)
g1 <- g1 + theme_light()
g1 <- g1 + labs(y = "Forex daily turnover (U.S. dollars, trillion)",
colour = "")
g1 <- g1 + theme(legend.position = c(0.5, 0.9), legend.direction = "horizontal",
legend.background = element_rect(linetype="solid",
colour ="grey"),
axis.title.x=element_blank(), panel.grid.minor=element_blank(),
text = element_text(family = "LM Roman 10"))
```
```{r Figure31, out.width='0.99\\columnwidth', fig.height=4, fig.cap="Forex daily turnover and ratio between Forex daily turnover and daily trade (ratio FX/Trade), 1989-2019 \\\\ \\scriptsize \\textit{Source:} Bank for International Settlements (BIS) for the Forex daily turnover. International Monetary Fund (IMF) for trade, using the sum of exports and imports of goods in current U.S. dollars, divided by 20 (business days). Both series are daily means for April.", fig.scap="Forex daily turnover and ratio between Forex daily turnover and daily trade (ratio FX/Trade), 1989-2019", fig.pos="ht", fig.align="center", echo = FALSE, message=FALSE, warning=FALSE}
plot(g1)
```
One of the leading financial operations in the Forex market is the currency carry trade. By targeting “international interest differentials”, carry traders (investors applying the carry trade investment strategy) “shift their asset holdings from low interest-rate currencies to higher-return currencies” [@grenville2010, \text{p.} 3].
With the speculators' positioning data supplied by the U.S. Commodity Futures Trading Commission (CFTC) Large Trader Reporting Data, I explore the relationship of the carry trade and its related financial variables. The carry trade literature can be divided into two big strands. On the one hand, there is a vast literature exploring carry trade returns with the use of portfolio optimization [e.g., @clarida2009; @cenedese2014; @doskov2015; @kang2020]. On the other hand, there is another strand criticizing carry trade and its consequences [e.g., @miranda-agrippino2013; @goda2019]. Nonetheless, as shown by @disyatat2013, this strand of literature lacks robust empirical analyses.
In this sense, this paper fills a gap in the carry trade literature by trying to approach both strands. @chuffart2020 also make use of CFTC data to investigate the effects of carry trade. This is a paper that is close to the main idea explored here: carry trade (proxied by real positioning) impacts other financial variables. Meanwhile, their focus is to assess the impacts of carry trade on the real economy during the Quantitative Easing period in Japan.
My results show evidence of the relationship between carry trade and four related financial variables (interest rate differentials, market sentiment, local stock indexes, and the U.S. stock index) in ten currencies (Australian dollar, Brazilian Real, Canadian dollar, Euro, British Pound, Japanese Yen, Mexican Peso, New Zealand dollar, Russian Ruble, and Swiss Franc). With two different periods based on the U.S. monetary policy (monetary easing and tightening), the Granger causality tests with the @toda1995 technique show relevant differences and similarities in the long-term relationship of these variables for each analyzed country.
## Methodology and Data {#threetwo}
By following the model estimated by @nishigaki2007, this article focuses on the relationship among carry trade ($CT$), nominal exchange rates ($ER$), interest rates differentials ($IRD$), market sentiment ($VIX$), local stock market indices ($SM$), and the U.S. stock market index ($SMUS$).
### Methodology {#threetwoone}
The applied model follows the VAR system as it is similarly proposed by @amiri2012.^[See the VAR model equations in the Appendix \@ref(appendixb1).]
The null hypothesis of the Granger causality test is that the dependent variable does not Granger cause the independent variable (excluded variable). To find evidence that the other variables Granger cause $CT$, conditions in Table \@ref(tab:Table31) must hold, as it is shown in Equation \@ref(eq:b2)^2^. Table \@ref(tab:Table32) shows the conditions for the Granger causality in the direction of other variables to $CT$, following Equations \@ref(eq:b1), \@ref(eq:b3), \@ref(eq:b4), \@ref(eq:b5), and \@ref(eq:b6)^2^.
```{r Table31, echo = FALSE, message=FALSE, warning=FALSE}
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
tab1 <- c("Condition", "$\\alpha_{21i}\\neq0\\forall_i$", "$\\gamma_{21i}\\neq0\\forall_i$", "$\\delta_{21i}\\neq0\\forall_i$", "$\\psi_{21i}\\neq0\\forall_i$", "$\\phi_{21i}\\neq0\\forall_i$")
tab1 <- as.data.frame(t(tab1))
colnames(tab1) <- c("Direction", "$ER$$\\rightarrow$$CT$", "$IRD$$\\rightarrow$$CT$", "$VIX$$\\rightarrow$$CT$",
"$SM$$\\rightarrow$$CT$", "$SMUS$$\\rightarrow$$CT$")
kable(tab1, "latex", caption = "Conditions for the Granger causality from the other variables to $CT$",
booktabs = T, escape = F) %>%
kable_styling(latex_options =c("HOLD_position"), font_size = 10) %>%
column_spec(1, bold = T)
```
```{r Table32, echo = FALSE, message=FALSE, warning=FALSE}
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
tab2 <- c("Condition", "$\\beta_{11i}\\neq0\\forall_i$", "$\\beta_{31i}\\neq0\\forall_i$", "$\\beta_{41i}\\neq0\\forall_i$", "$\\beta_{51i}\\neq0\\forall_i$", "$\\beta_{61i}\\neq0\\forall_i$")
tab2 <- as.data.frame(t(tab2))
colnames(tab2) <- c("Direction", "$CT$$\\rightarrow$$ER$", "$CT$$\\rightarrow$$IRD$", "$CT$$\\rightarrow$$VIX$",
"$CT$$\\rightarrow$$SM$", "$CT$$\\rightarrow$$SMUS$")
kable(tab2, "latex", caption = "Conditions for the Granger causality from $CT$ to the other variables",
booktabs = T, escape = F) %>%
kable_styling(latex_options =c("HOLD_position"), font_size = 10) %>%
column_spec(1, bold = T)
```
It is worth highlighting that the ordering of the variables does not change the results from the Granger causality tests.
### Data {#threetwotwo}
As a proxy for carry trade ($CT$), the weekly data provided by the U.S. Commodity Futures Trading Commission’s (CFTC) Commitments of Traders Report (COTR) is used. This report only provides information for 12 currencies. Excluding the Euro FX/British Pound and the South African Rand, my dataset is composed of ten of them (Australian dollar - AUD, Brazilian Real - BRL, Canadian dollar - CAD, Euro - EUR, British Pound - GBP, Japanese Yen - JPY, Mexican Peso - MXN, New Zealand dollar - NZD, Russian Ruble - RBL, and Swiss Franc - CHF). The reasons for exclusion are that the former is not a pair with the U.S. dollar, and the latter lacks data.
There are some caveats in the use of this proxy. Usually, exchanges in currency markets are over-the-counter (OTC) operations, complicating the modeling of carry trade activity [@galati2007; @gubler2014]. Not only CFTC data represent a small fraction of carry trade, but some traders may also be using these contracts for other purposes [@curcuru2011]. Each contract has information that is not publicly available, leaving space for misinterpretation. Nonetheless, as pointed out by @bankforinternationalsettlements2015, CFTC data is a reliable indicator of trends in carry trade activity. Also, it is the best publicly available data on speculative traders.
Using the number of contracts of non-commercial traders, I calculate the carry trade as the ratio of positions, as proposed by @nishigaki2007. For target currencies, the ratio is calculated by dividing long positions by short positions ($CT$). Conversely, short positions over long positions are the ratio for funding currencies ($CTF$). As pointed out by @curcuru2011 [\text{, p.} 438], "engagement in carry trades could be indicated by a net short futures position in the funding currency, paired with a net long futures position in the target currency." Therefore, using a specific ratio for each type of currency (target or funding) is more adequate to model its behavior.
The interest rate differential gives the classification of target and funding currencies. If the difference between the country’s policy interest rate and the U.S. policy interest rate ($IRD$) is positive, the country’s currency is classified as a target currency. Contrariwise, a negative value for $IRD$ indicates a funding currency. In this case, following @gubler2014, the interest rate differential ($IRDF$) is given by the difference between the U.S. policy interest rate and the country’s policy interest rate. Figure \@ref(fig:Figure32) illustrates the results for the $IRD$.
```{r Figure32code, echo = FALSE, message=FALSE, warning=FALSE}
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
# LOAD DATA
DFIRD <- structure(list(Date = structure(c(14243, 14250, 14257, 14264,
14271, 14278, 14285, 14292, 14299, 14306, 14313, 14320, 14327,
14334, 14341, 14348, 14355, 14362, 14369, 14376, 14383, 14390,
14397, 14404, 14411, 14418, 14425, 14432, 14439, 14446, 14453,
14460, 14467, 14474, 14481, 14488, 14495, 14502, 14509, 14516,
14523, 14530, 14537, 14544, 14551, 14557, 14565, 14572, 14579,
14586, 14593, 14600, 14607, 14614, 14621, 14628, 14635, 14642,
14649, 14656, 14663, 14670, 14677, 14684, 14691, 14698, 14705,
14712, 14719, 14726, 14733, 14740, 14747, 14754, 14761, 14768,
14775, 14782, 14789, 14796, 14803, 14810, 14817, 14824, 14831,
14838, 14845, 14852, 14859, 14866, 14873, 14880, 14887, 14894,
14901, 14908, 14915, 14922, 14929, 14936, 14943, 14950, 14957,
14964, 14971, 14978, 14985, 14992, 14999, 15006, 15013, 15020,
15027, 15034, 15041, 15048, 15055, 15062, 15069, 15076, 15083,
15090, 15097, 15104, 15111, 15118, 15125, 15132, 15139, 15146,
15153, 15160, 15167, 15174, 15181, 15188, 15195, 15202, 15209,
15216, 15223, 15230, 15237, 15244, 15251, 15258, 15265, 15272,
15279, 15286, 15293, 15300, 15307, 15314, 15321, 15328, 15335,
15342, 15349, 15356, 15363, 15370, 15377, 15384, 15391, 15398,
15405, 15412, 15419, 15426, 15433, 15440, 15447, 15454, 15461,
15468, 15475, 15482, 15489, 15496, 15503, 15510, 15517, 15524,
15531, 15538, 15545, 15552, 15559, 15566, 15573, 15580, 15587,
15594, 15601, 15608, 15615, 15622, 15629, 15636, 15643, 15650,
15657, 15664, 15671, 15678, 15685, 15692, 15698, 15705, 15713,
15720, 15727, 15734, 15741, 15748, 15755, 15762, 15769, 15776,
15783, 15790, 15797, 15804, 15811, 15818, 15825, 15832, 15839,
15846, 15853, 15860, 15867, 15874, 15881, 15888, 15895, 15902,
15909, 15916, 15923, 15930, 15937, 15944, 15951, 15958, 15965,
15972, 15979, 15986, 15993, 16000, 16007, 16014, 16021, 16028,
16035, 16042, 16049, 16056, 16063, 16070, 16077, 16084, 16091,
16098, 16105, 16112, 16119, 16126, 16133, 16140, 16147, 16154,
16161, 16168, 16175, 16182, 16189, 16196, 16203, 16210, 16217,
16224, 16231, 16238, 16245, 16252, 16259, 16266, 16273, 16280,
16287, 16294, 16301, 16308, 16315, 16322, 16329, 16336, 16343,
16350, 16357, 16364, 16371, 16378, 16385, 16392, 16399, 16406,
16413, 16420, 16427, 16434, 16441, 16448, 16455, 16462, 16469,
16476, 16483, 16490, 16497, 16504, 16511, 16518, 16525, 16532,
16539, 16546, 16553, 16560, 16567, 16574, 16581, 16588, 16595,
16602, 16609, 16616, 16623, 16630, 16637, 16644, 16651, 16658,
16665, 16672, 16679, 16686, 16693, 16700, 16707, 16714, 16721,
16728, 16735, 16742, 16749, 16756, 16763, 16770, 16777, 16784,
16791, 16798, 16805, 16812, 16819, 16826, 16833, 16840, 16847,
16854, 16861, 16868, 16875, 16882, 16889, 16896, 16903, 16910,
16917, 16924, 16931, 16938, 16945, 16952, 16959, 16966, 16973,
16980, 16987, 16994, 17001, 17008, 17015, 17022, 17029, 17036,
17043, 17050, 17057, 17064, 17071, 17078, 17085, 17092, 17099,
17106, 17113, 17120, 17127, 17134, 17141, 17148, 17155, 17162,
17169, 17176, 17183, 17190, 17197, 17204, 17211, 17218, 17225,
17232, 17239, 17246, 17253, 17260, 17267, 17274, 17281, 17288,
17295, 17302, 17309, 17316, 17323, 17330, 17337, 17344, 17350,
17358, 17365, 17372, 17379, 17386, 17393, 17400, 17407, 17414,
17421, 17428, 17435, 17442, 17449, 17456, 17463, 17470, 17477,
17484, 17491, 17498, 17505, 17512, 17519, 17526, 17533, 17540,
17547, 17554, 17561, 17568, 17575, 17582, 17589, 17596, 17603,
17610, 17617, 17624, 17631, 17638, 17645, 17652, 17659, 17666,
17673, 17680, 17687, 17694, 17701, 17708, 17715, 17722, 17729,
17736, 17743, 17750, 17757, 17764, 17771, 17778, 17785, 17792,
17799, 17806, 17813, 17820, 17827, 17834, 17841, 17848, 17855,
17862, 17869, 17876, 17883, 17889, 17896, 17904, 17911, 17918,
17925, 17932, 17939, 17946, 17953, 17960, 17967, 17974, 17981,
17988, 17995, 18002, 18009, 18016, 18023, 18030, 18037, 18044,
18051, 18058, 18065, 18072), class = "Date"), Australia = c(4.125,
4.125, 4.125, 4.125, 4.125, 4.125, 3.125, 3.125, 3.125, 3.125,
3.125, 3.125, 3.125, 3.125, 3.125, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 3.125, 3.125, 3.125, 3.125, 3.375,
3.375, 3.375, 3.375, 3.625, 3.625, 3.625, 3.625, 3.625, 3.625,
3.625, 3.625, 3.625, 3.625, 3.625, 3.625, 3.625, 3.875, 3.875,
3.875, 3.875, 3.875, 4.125, 4.125, 4.125, 4.125, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.625, 4.625, 4.629,
4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625,
4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625,
4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625,
4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625,
4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625,
4.625, 4.625, 4.625, 4.625, 4.375, 4.375, 4.375, 4.375, 4.375,
4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125,
4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125,
4.125, 4.125, 4.125, 3.625, 3.625, 3.625, 3.625, 3.625, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.125, 3.125,
3.125, 3.125, 3.125, 3.125, 3.125, 3.125, 3.125, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.625, 2.625, 2.625, 2.625, 2.625, 2.625, 2.625,
2.625, 2.625, 2.625, 2.625, 2.625, 2.625, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.125, 2.125, 2.125, 2.125, 2.125, 2.125,
2.125, 2.125, 2.125, 2.125, 2.125, 2.125, 2.125, 1.875, 1.875,
1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
1.875, 1.875, 1.875, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625,
1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625,
1.625, 1.625, 1.625, 1.625, 1.625, 1.375, 1.375, 1.375, 1.375,
1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375,
1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125,
1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125,
1.125, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, -0.125, -0.125, -0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -1.125, -1.125, -1.125), Brazil = c(NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, 9.875, 10.375, 10.375, 10.375, NA, 10.375, 10.375,
10.625, 10.625, 10.625, 10.625, 10.625, 10.875, 10.875, 10.875,
10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875,
10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875,
10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875,
10.875, 10.875, 10.875, 11.125, 11.125, 11.125, 11.125, 11.125,
11.625, 11.625, 11.625, 11.625, 11.625, NA, NA, 12.125, NA, 12.125,
12.125, 12.125, 12.125, 12.625, 12.625, NA, 12.625, NA, 12.625,
12.625, 12.625, NA, 13.125, 13.125, 13.125, 13.125, 13.625, 13.625,
13.625, 13.625, 13.625, 13.625, 13.625, 13.625, 14.125, 14.125,
14.125, 14.125, 14.125, 14.125, 14.125, 14.125, 14.125, 14.125,
14.125, 14.125, 14.125, 14.125, 14.125, 14.125, 14.125, 14.125,
14.125, 14.125, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875,
13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875,
13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875,
13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875,
13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.875,
13.875, 13.875, 13.875, 13.875, 13.875, 13.875, 13.625, 13.625,
13.625, 13.625, 13.625, 13.625, 13.375, 13.375, 13.125, 13.125,
13.125, 13.125, 12.375, 12.375, 12.375, 12.375, 12.375, 12.375,
11.625, 11.625, 11.625, 11.375, 11.375, 11.375, 11.375, 10.375,
10.375, 10.375, 10.375, 10.375, 10.375, 10.375, 9.375, 9.375,
9.125, 9.125, 9.125, 9.125, 9.125, 9.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 7.125, 7.125, 7.125, 7.125, 7.125, 7.125,
7.125, 6.375, 6.375, 6.375, 6.375, 6.375, 6.375, 5.875, 5.625,
5.625, 5.625, 5.625, 5.625, 5.625, 5.625, 5.625, 5.375, 5.375,
5.375, 5.375, 5.375, 5.375, 4.875, 4.875, 4.875, 4.875, 4.875,
4.875, 4.875, 4.875, 4.875, 4.875, 4.875, 4.875, 4.625, 4.625,
4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625, 4.625,
4.625, 4.625, 4.625, 4.625, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.125, 4.125,
4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125,
4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125,
4.125, 4.125, 4.125, 4.125, 4.125, 4.125, 4.125), Canada = c(1.375,
1.375, 1.375, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.625, -0.625, -0.625, -0.625, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.625,
-0.625, -0.625, -0.625, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.625, -0.625,
-0.625, -0.625, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625), `Euro area` = c(2.375,
2.375, 2.375, 2.375, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
1.875, 1.375, 1.375, 1.375, 1.375, 1.125, 1.125, 1.125, 1.125,
1.125, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125,
1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.375, 1.375, 1.375,
1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375,
1.375, 1.375, 1.375, 1.375, 1.375, 1.125, 1.125, 1.125, 1.125,
1.125, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.025, 0.025, 0.025, 0.025,
0.025, 0.025, 0.025, 0.025, 0.025, 0.025, 0.025, 0.025, 0.025,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325,
-0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.375, -1.375, -1.375, -1.375, -1.375, -1.375,
-1.375, -1.375, -1.375, -1.375, -1.375, -1.375, -1.375, -1.375,
-1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625,
-1.625, -1.625, -1.625, -1.625, -1.875, -1.875, -1.875, -1.875,
-1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875,
-1.875, -1.875, -1.875, -2.125, -2.125, -2.125, -2.125, -2.125,
-2.125, -2.125, -2.125, -2.125, -2.125, -2.125, -2.125, -2.375,
-2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375,
-2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375,
-2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375,
-2.375, -2.375), Japan = c(-0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025,
-0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.025, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075,
-0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.075, -0.325,
-0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325,
-0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325,
-0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325,
-0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325,
-0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.325, -0.475,
-0.475, -0.475, -0.475, -0.475, -0.475, -0.475, -0.475, -0.475,
-0.475, -0.475, -0.475, -0.725, -0.725, -0.725, -0.725, -0.725,
-0.725, -0.725, -0.725, -0.725, -0.725, -0.725, -0.725, -0.725,
-0.975, -0.975, -0.975, -0.975, -0.975, -0.975, -0.975, -0.975,
-0.975, -0.975, -0.975, -0.975, -0.975, -1.225, -1.225, -1.225,
-1.225, -1.225, -1.225, -1.225, -1.225, -1.225, -1.225, -1.225,
-1.225, -1.225, -1.225, -1.225, -1.225, -1.225, -1.225, -1.225,
-1.225, -1.225, -1.225, -1.225, -1.225, -1.225, -1.225, -1.475,
-1.475, -1.475, -1.475, -1.475, -1.475, -1.475, -1.475, -1.475,
-1.475, -1.475, -1.475, -1.475, -1.475, -1.725, -1.725, -1.725,
-1.725, -1.725, -1.725, -1.725, -1.725, -1.725, -1.725, -1.725,
-1.725, -1.975, -1.975, -1.975, -1.975, -1.975, -1.975, -1.975,
-1.975, -1.975, -1.975, -1.975, -1.975, -1.975, -1.975, -1.975,
-2.225, -2.225, -2.225, -2.225, -2.225, -2.225, -2.225, -2.225,
-2.225, -2.225, -2.225, -2.225, -2.475, -2.475, -2.475, -2.475,
-2.475, -2.475, -2.475, -2.475, -2.475, -2.475, -2.475, -2.475,
-2.475, -2.475, -2.475, -2.475, -2.475, -2.475, -2.475, -2.475,
-2.475, -2.475, -2.475, -2.475, -2.475, -2.475, -2.475), Mexico = c(8.125,
8.125, 8.125, 7.625, 7.625, 7.625, 7.625, 7.625, 7.375, 7.375,
7.375, 7.375, 6.625, 6.625, 6.625, 6.625, 5.875, 5.875, 5.875,
5.875, 5.125, 5.125, 5.125, 5.125, 5.125, 4.625, 4.625, 4.625,
4.625, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.375,
4.375, 4.375, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875,
3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875,
3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875,
3.875, 3.625, 3.625, 3.625, 3.625, 3.625, 3.625, 3.625, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.875, 3.875, 3.875, 3.875, 3.875,
3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 3.875, 4.375,
4.375, 4.375, 4.375, 4.375, 4.375, 4.375, 4.875, 4.875, 4.875,
4.875, 5.125, 5.125, 5.125, 5.125, 5.125, 5.125, 5.125, 5.125,
5.625, 5.625, 5.625, 5.625, 5.625, 5.375, 5.375, 5.625, 5.625,
5.625, 5.625, 5.625, 5.625, 5.625, 5.875, 5.875, 5.875, 5.875,
5.625, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 6.125, 6.125,
6.125, 6.125, 6.125, 6.125, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.625, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.625, 5.625, 5.625, 5.625, 5.625,
5.625, 5.625, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875,
5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875), `New Zealand` = c(4.875,
4.875, 4.875, 4.875, 4.875, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.625, 2.625, 2.625, 2.625, 2.625, 2.625,
2.625, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.625, 2.625, 2.625, 2.625, 2.625, 2.625, 2.875, 2.875,
2.875, 2.875, 2.875, 2.875, 2.875, 3.125, 3.125, 3.125, 3.125,
3.125, 3.125, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375, 3.375,
3.375, 3.375, 3.375, 3.125, 3.125, 3.125, 3.125, 3.125, 3.125,
2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.875, 2.625, 2.625,
2.625, 2.625, 2.625, 2.625, 2.625, 2.625, 2.625, 2.625, 2.625,
2.625, 2.625, 2.375, 2.125, 2.125, 2.125, 2.125, 2.125, 2.125,
2.125, 2.125, 2.125, 2.125, 2.125, 2.125, 1.875, 1.875, 1.875,
1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
1.875, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625,
1.625, 1.625, 1.625, 1.625, 1.625, 1.375, 1.375, 1.375, 1.375,
1.375, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125,
1.125, 1.125, 1.125, 1.125, 1.125, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875), Russia = c(NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, 9.875, 9.875, 9.875, 9.875, 9.375, 9.375, 9.375,
9.375, 8.875, 8.875, 8.875, 8.875, 8.625, 8.625, NA, 8.625, 8.625,
8.625, 8.625, 8.625, 8.625, 8.375, 8.375, 8.375, 8.375, 8.125,
8.125, 8.125, 8.125, 8.125, 7.875, 7.875, 7.875, 7.875, 7.625,
7.625, 7.625, 7.625, 7.625, 7.625, 7.625, 7.625, 7.625, 7.625,
7.625, 7.625, 7.625, 7.625, 7.625, 7.625, 7.625, NA, 7.625, 7.625,
7.625, 7.625, 7.625, 7.625, 7.625, 7.625, 7.625, 7.625, 7.625,
NA, 7.625, 7.625, 7.625, 7.625, NA, 7.625, 7.625, 7.625, 7.625,
7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 7.875, 7.875,
7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875,
7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875,
7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 8.125, 7.875, 7.875,
7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125,
8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 5.375, 5.375,
5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375,
5.375, 5.375, NA, NA, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375,
5.375, 5.375, 5.375, 6.875, NA, 6.875, NA, 6.875, NA, 6.875,
6.875, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375,
7.375, 7.375, 7.375, 7.375, 7.375, 7.875, 7.875, 7.875, 7.875,
7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875,
7.875, 7.875, 9.375, 9.375, 9.375, 9.375, 9.375, 16.875, 16.875,
16.875, 16.875, 16.875, 16.875, 16.875, 14.875, 14.875, 14.875,
14.875, 14.875, 14.875, 13.875, 13.875, 13.875, 13.875, 13.875,
13.875, 13.875, 12.375, 12.375, 12.375, 12.375, 12.375, 12.375,
11.375, 11.375, 11.375, 11.375, 11.375, 11.375, 11.375, 10.875,
10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875,
10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875, 10.875,
10.875, 10.875, 10.875, 10.625, 10.625, 10.625, 10.625, 10.625,
10.625, 10.625, 10.625, 10.625, 10.625, 10.625, 10.625, 10.625,
10.625, 10.625, 10.625, 10.625, 10.625, 10.625, 10.625, 10.625,
10.625, 10.625, 10.625, 10.625, 10.125, 10.125, 10.125, 10.125,
10.125, 10.125, 10.125, 10.125, 10.125, 10.125, 10.125, 10.125,
10.125, 10.125, 9.625, 9.625, 9.625, 9.625, 9.625, 9.625, 9.625,
9.625, 9.625, 9.625, 9.625, 9.625, 9.625, 9.375, 9.375, 9.375,
9.375, 9.375, 9.375, 9.375, 9.375, 9.375, 9.375, 9.375, 9.375,
9.375, 9.125, 8.875, 8.875, 8.875, 8.875, 8.875, 8.875, 8.375,
8.375, 8.375, 8.375, 8.375, 8.375, 7.875, 7.875, 7.875, 7.875,
7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875, 7.875,
7.875, 7.375, 7.375, 7.375, 7.375, 7.375, 7.125, 7.125, 7.125,
7.125, 7.125, 7.125, 7.125, 6.375, 6.375, 6.375, 6.375, 6.375,
6.375, 6.375, 6.375, 6.125, 6.125, 6.125, 6.125, 6.125, 6.125,
5.625, 5.625, 5.625, 5.625, 5.625, 5.625, 5.625, 5.625, 5.625,
5.625, 5.625, 5.625, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375,
5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.625, 5.625,
5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375,
5.375, 5.375, 5.625, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375,
5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375,
5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375, 5.375,
5.375, 5.125, 5.125), Switzerland = c(0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25,
0.25, 0.25, 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, 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, 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, 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, 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, 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.375, -0.375, -0.375, -0.375,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.375, -1.375, -1.375, -1.375,
-1.375, -1.375, -1.375, -1.375, -1.375, -1.375, -1.375, -1.375,
-1.375, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625,
-1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.875, -1.875,
-1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875,
-1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875,
-1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875, -1.875,
-2.125, -2.125, -2.125, -2.125, -2.125, -2.125, -2.125, -2.125,
-2.125, -2.125, -2.125, -2.125, -2.125, -2.125, -2.375, -2.375,
-2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375, -2.375,
-2.375, -2.375, -2.625, -2.625, -2.625, -2.625, -2.625, -2.625,
-2.625, -2.625, -2.625, -2.625, -2.625, -2.625, -2.625, -2.625,
-2.625, -2.875, -2.875, -2.875, -2.875, -2.875, -2.875, -2.875,
-2.875, -2.875, -2.875, -2.875, -2.875, -3.125, -3.125, -3.125,
-3.125, -3.125, -3.125, -3.125, -3.125, -3.125, -3.125, -3.125,
-3.125, -3.125, -3.125, -3.125, -3.125, -3.125, -3.125, -3.125,
-3.125, -3.125, -3.125, -3.125, -3.125, -3.125, -3.125, -3.125
), `United Kingdom` = c(1.875, 1.875, 1.375, 1.375, 1.375, 1.375,
0.875, 0.875, 0.875, 0.875, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, -0.125, -0.125, -0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.125,
-0.125, -0.125, -0.125, -0.125, -0.125, -0.125, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375, -0.375,
-0.375, -0.375, -0.375, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625, -0.625,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.625, -0.625, -0.625, -0.625,
-0.625, -0.625, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875, -0.875,
-1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.125, -1.375, -1.375, -1.375, -1.375,
-1.375, -1.375, -1.375, -1.125, -1.125, -1.125, -1.125, -1.125,
-1.125, -1.125, -1.125, -1.375, -1.375, -1.375, -1.375, -1.375,
-1.375, -1.375, -1.375, -1.375, -1.375, -1.375, -1.375, -1.625,
-1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625,
-1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625,
-1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625, -1.625,
-1.625, -1.625), USIR = c(0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.375,
0.375, 0.375, 0.375, 0.375, 0.375, 0.375, 0.625, 0.625, 0.625,
0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625, 0.625,
0.625, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875, 0.875,
0.875, 0.875, 0.875, 0.875, 0.875, 1.125, 1.125, 1.125, 1.125,
1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125,
1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125, 1.125,
1.125, 1.125, 1.125, 1.125, 1.375, 1.375, 1.375, 1.375, 1.375,
1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375, 1.375,
1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625, 1.625,
1.625, 1.625, 1.625, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875, 1.875,
2.125, 2.125, 2.125, 2.125, 2.125, 2.125, 2.125, 2.125, 2.125,
2.125, 2.125, 2.125, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375, 2.375,
2.375, 2.375, 2.375)), row.names = c(NA, -548L), class = "data.frame")
g2 <- ggplot(DFIRD, aes(x = Date))
g2 <- g2 + geom_line(aes(y = Australia, colour = "Australia"))
g2 <- g2 + geom_line(aes(y = Brazil, colour = "Brazil*"))
g2 <- g2 + geom_line(aes(y = Canada, colour = "Canada"))
g2 <- g2 + geom_line(aes(y = `Euro area`, colour = "Euro area"))
g2 <- g2 + geom_line(aes(y = Japan, colour = "Japan"))
g2 <- g2 + geom_line(aes(y = Mexico, colour = "Mexico"))
g2 <- g2 + geom_line(aes(y = `New Zealand`, colour = "New Zealand"))
g2 <- g2 + geom_line(aes(y = Russia, colour = "Russia*"))
g2 <- g2 + geom_line(aes(y = Switzerland, colour = "Switzerland"))
g2 <- g2 + geom_line(aes(y = `United Kingdom`, colour = "United Kingdom"))
g2 <- g2 + scale_x_date(date_labels = "%b/%y", breaks = seq(as.Date("2008-12-30"), as.Date("2019-06-25"), by="11 months"), expand = c(0, 0))
g2 <- g2 + scale_y_continuous(labels = function(x) paste0(x, "%"), breaks = c(-5, 0, 5, 10, 15))
g2 <- g2 + geom_vline(xintercept = as.Date(c("2015-12-16")))
g2 <- g2 + scale_color_jcolors(palette = "pal8")
g2 <- g2 + theme_light()
g2 <- g2 + labs(y = "Interest rate differentials",
colour = "")
g2 <- g2 + theme(legend.position = "bottom", legend.direction = "horizontal",
axis.title.x=element_blank(),
axis.text.x = element_text(size = 9),
panel.grid.minor=element_blank(),
text = element_text(family = "LM Roman 10"))
rect2 <- data.frame(xmin=as.Date(c("2015-12-16")), xmax=as.Date(c("2019-06-25")), ymin=-Inf, ymax=Inf)
g2 <- g2 + geom_rect(data=rect2, aes(xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax),
color=NA,
fill="gray45",
alpha=0.1,
inherit.aes = FALSE)
g2 <- g2 + annotate(geom="label", x=as.Date("2012-08-23"), y=16, family = "LM Roman 10",
label="Monetary easing (ME)", color = "black")
g2 <- g2 + annotate(geom="label", x=as.Date("2017-09-23"), y=16, family = "LM Roman 10",
label="Monetary tightening (MT)", color = "black")
```
```{r Figure32, out.width='0.99\\columnwidth', fig.height=4, fig.cap="Difference between the country’s policy interest rate and the U.S. policy interest rate, in per cent \\\\ \\scriptsize *Gaps are present due to lack of data in other variables.", fig.scap="Difference between the country’s policy interest rate and the U.S. policy interest rate, in per cent", fig.align = "center", echo = FALSE, message=FALSE, warning=FALSE}
plot(g2)
```
As shown in Figure \@ref(fig:Figure32), currencies changed their classification according to the U.S. monetary policy movements. During the monetary easing (ME) period, only the currencies of Japan and Switzerland are classified as funding currencies, being the U.S. dollar the target currency. During the monetary tightening (MT) period, there are significant changes. First, the currencies of Canada, the Euro area, and the United Kingdom reclassify as funding currencies. Second, the currencies of Australia and New Zealand present target and funding classifications, creating respectively two subsamples MTT and MTF. Table \@ref(tab:Table33) shows the number of observations for each country and sample.
```{r Table33, echo = FALSE, message=FALSE, warning=FALSE}
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
tab4 <- data.frame(Country = c("Australia", "Brazil*", "Canada", "Euro area", "Japan", "Mexico", "New Zealand", "Russia*", "Switzerland", "United Kingdom"),
Period = c("12/30/2008 - 06/25/2019", "01/14/2014 - 06/25/2019", "12/30/2008 - 06/25/2019", "12/30/2008 - 06/25/2019", "12/30/2008 - 06/25/2019", "12/30/2008 - 06/25/2019", "12/30/2008 - 06/25/2019", "10/06/2009 - 06/25/2019", "12/30/2008 - 06/25/2019", "12/30/2008 - 06/25/2019"),
ME = c("364", "94", "364", "364", "364", "364", "364", "315", "364", "364"),
MT = c("", "184", "184", "184", "184", "184", "", "184", "184", "184"),
MTT = c("118", "", "", "", "", "", "130", "", "", ""),
MTF = c("66", "", "", "", "", "", "54", "", "", ""), stringsAsFactors = F)
kable(tab4, "latex", caption = "Sample description", booktabs = T, linesep = "", align = "lccccc") %>%
add_header_above(c(" " = 2, "Sample" = 4), bold = T) %>%
kable_styling(font_size = 10) %>%
row_spec(0, bold = T) %>%
footnote(
general = "\\\\footnotesize{Period differs from other countries due to lack of data.}",
general_title = "\\\\footnotesize{*}",
footnote_as_chunk = T,
escape = F
)
```
Additionally, an exogenous dummy variable for the tapering period (TAPER) in the monetary easing (ME) period is included. TAPER starts in May 2013, with Ben Bernanke mentioning for the first time the possibility of tapering [@chari2017]. It ends with the first hike in the U.S. policy interest rate on December 15 2015. This dummy is critical to account for the period wherein the quantitative easing monetary policies started to unwind.
Table \@ref(tab:Table34) shows the detailed description of each variable^[Descriptive statistics is supplied in Appendix \@ref(appendixb2).]. Based on @donnelly2019, nominal exchange rates ($ER$) are in the same form as used by market practitioners. Market sentiment is given by ($VIX$). To account for the stock market activity of each country and in the U.S., main market indexes are used ($SM$ and $SMUS$, respectively). Overall, I follow the same group of variables proposed by @nishigaki2007.
(ref:abel-citation20) @ryan2020
(ref:abel-citation21) @perlin2020
```{r Table34, echo = FALSE, message=FALSE, warning=FALSE}
library(ggplot2)
library(jcolors)
library(lubridate)
library(kableExtra)
library(tidyverse)
library(tibble)
library("extrafont")
tab3 <- data.frame(Variables = c("\\multirow{3}{*}[0pt]{$ER$}", "$CT$", "$CTF$", "\\multirow{2}{*}[0pt]{$IRD$}", "\\multirow{2}{*}[0pt]{$IRDF$}", "\\multirow{5}{*}[0pt]{$VIX$}", "\\multirow{10}{*}[0pt]{$SM$}", "$SMUS$"),
Text_1 = c("Nominal exchange rates (AUDUSD, USDBRL, USDCAD, EURUSD, USDJPY, USDMXN, NZDUSD, USDRBL, USDCHF, and GBPUSD)",
"Ratio of long positions over short positions (Long/Short)",
"Ratio of short positions over long positions (Short/Long)",
"Difference between the country’s policy interest rate and the U.S. policy interest rate",
"Difference between the U.S. policy interest rate and the country’s policy interest rate",
"(1) CBOE DJIA Volatility Index (Australia, Canada, Japan, Mexico, New Zealand, Russia, Switzerland, and the United Kingdom)\n (2) CBOE Brazil ETF Volatility Index (Brazil)\n (3) CBOE EuroCurrency ETF Volatility Index (Euro area)",
"(1) S$\\&$P/ASX 200, $\\textasciicircum$AXJO (Australia)\n(2) IBOVESPA, $\\textasciicircum$BVSP (Brazil)\n(3) S$\\&$P/TSX, $\\textasciicircum$GSPTSE (Canada)\n(4) EURONEXT 100, $\\textasciicircum$N100 (Euro area)\n(5) NIKKEI 225, $\\textasciicircum$N225 (Japan)\n(6) S$\\&$P/BMV IPC, $\\textasciicircum$MXX (Mexico)\n(7) S$\\&$P/NZX 50, $\\textasciicircum$NZ50 (New Zealand)\n(8) MOEX Russia, IMOEX.ME (Russia)\n(9) Swiss Market Index, $\\textasciicircum$SSMI (Switzerland)\n(10) FTSE 100, $\\textasciicircum$FTSE (United Kingdom)",
"S$\\&$P 500, $\\textasciicircum$GSPC (United States)"),
Text_2 = c("\\multirow{3}{*}[0pt]{BIS}", "CFTC", "CFTC", "\\multirow{2}{*}[0pt]{BIS}", "\\multirow{2}{*}[0pt]{BIS}", "\\multirow{5}{*}[0pt]{FRED}", "\\multirow{10}{*}[0pt]{Yahoo Finance*}", "Yahoo Finance*"), stringsAsFactors = F)
colnames(tab3) <- c("Variable", "Definition", "Source")
tab3 %>%
mutate_all(linebreak) %>%
kable("latex", caption = "Description of variables", booktabs = T, linesep = "", escape = F, position = "ht", align = "clc") %>%
kable_styling(latex_options =c("scale_down")) %>%
column_spec(2, width = "11,5cm") %>%
collapse_rows(columns = 1:2, latex_hline = "none", valign = "middle") %>%
row_spec(0, bold = T) %>%
row_spec(1, extra_latex_after = "\\addlinespace") %>%
row_spec(2, extra_latex_after = "\\addlinespace") %>%
row_spec(3, extra_latex_after = "\\addlinespace") %>%
row_spec(4, extra_latex_after = "\\addlinespace") %>%
row_spec(5, extra_latex_after = "\\addlinespace") %>%
row_spec(6, extra_latex_after = "\\addlinespace") %>%
row_spec(7, extra_latex_after = "\\addlinespace") %>%
footnote(
general = "\\\\footnotesize{Data is gathered using the R package {quantmod} (function GetSymbols), developed by (ref:abel-citation0). The R package {BatchGetSymbols}, written by (ref:abel-citation1), was used to confirm that the data collected was clean. Due to problems with data for Russia, data from the Moscow Exchange (MOEX) was used for cleaning.}",
general_title = "\\\\footnotesize{*}",
footnote_as_chunk = T,
escape = F,
threeparttable = T
)
```
## Estimation results^[A replication pack with the commands (Stata 13 Do-file) and data is available [here](http://www.accessecon.com/includes/CountdownloadPDF.aspx?Type=Other_data&ID=EB-19-00720). Appendix \@ref(appendixb) provide the supplemental material.] {#threethree}