-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv6.rtf
1077 lines (900 loc) · 73.7 KB
/
v6.rtf
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
{\rtf1\ansi\ansicpg1252\cocoartf1671\cocoasubrtf600
{\fonttbl\f0\froman\fcharset0 TimesNewRomanPS-BoldMT;\f1\froman\fcharset0 Times-Bold;\f2\froman\fcharset0 TimesNewRomanPSMT;
\f3\froman\fcharset0 Times-Roman;\f4\froman\fcharset0 TimesNewRomanPS-ItalicMT;\f5\froman\fcharset0 TimesNewRomanPS-BoldItalicMT;
\f6\fnil\fcharset0 STIXGeneral-Regular;\f7\fswiss\fcharset0 ArialMT;}
{\colortbl;\red255\green255\blue255;\red0\green0\blue0;\red255\green255\blue255;\red16\green60\blue192;
}
{\*\expandedcolortbl;;\cssrgb\c0\c0\c0;\cssrgb\c100000\c100000\c100000;\cssrgb\c6667\c33333\c80000;
}
{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{decimal\}.}{\leveltext\leveltemplateid1\'02\'00.;}{\levelnumbers\'01;}\fi-360\li720\lin720 }{\listname ;}\listid1}
{\list\listtemplateid2\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat2\levelspace360\levelindent0{\*\levelmarker \{decimal\}.}{\leveltext\leveltemplateid101\'02\'00.;}{\levelnumbers\'01;}\fi-360\li720\lin720 }{\listname ;}\listid2}
{\list\listtemplateid3\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat3\levelspace360\levelindent0{\*\levelmarker \{decimal\}.}{\leveltext\leveltemplateid201\'02\'00.;}{\levelnumbers\'01;}\fi-360\li720\lin720 }{\listname ;}\listid3}
{\list\listtemplateid4\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid301\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid4}
{\list\listtemplateid5\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid401\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid5}
{\list\listtemplateid6\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid501\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid6}
{\list\listtemplateid7\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat4\levelspace360\levelindent0{\*\levelmarker \{decimal\}.}{\leveltext\leveltemplateid601\'02\'00.;}{\levelnumbers\'01;}\fi-360\li720\lin720 }{\listname ;}\listid7}
{\list\listtemplateid8\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{decimal\}.}{\leveltext\leveltemplateid701\'02\'00.;}{\levelnumbers\'01;}\fi-360\li720\lin720 }{\listname ;}\listid8}}
{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}{\listoverride\listid3\listoverridecount0\ls3}{\listoverride\listid4\listoverridecount0\ls4}{\listoverride\listid5\listoverridecount0\ls5}{\listoverride\listid6\listoverridecount0\ls6}{\listoverride\listid7\listoverridecount0\ls7}{\listoverride\listid8\listoverridecount0\ls8}}
\margl1440\margr1440\vieww15940\viewh11740\viewkind0
\deftab720
\pard\pardeftab720\sl1020\sa373\partightenfactor0
\f0\b\fs42\fsmilli21333 \cf2 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Stocks and Cryptocurrencies: Antifragile or Robust? A Novel Antifragility Measure of the Stock and Cryptocurrency Markets\'a0
\f1\fs48 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\b0\fs32 \cf2 Dar\'edo Alatorre,
\fs19\fsmilli9600 \super 1,2,*
\fs32 \nosupersub Carlos Gershenson,
\fs19\fsmilli9600 \super 1,3
\fs32 \nosupersub and Jos\'e9 L. Mateos
\fs19\fsmilli9600 \super 1,4
\f3\fs24 \nosupersub \
\pard\pardeftab720\sl460\sa373\partightenfactor0
\f2\fs19\fsmilli9600 \cf2 \super 1
\fs32 \nosupersub Centro de Ciencias de la Complejidad, Universidad Nacional Aut\'f3noma de M\'e9xico, Ciudad de M\'e9xico, C. P. 04510, M\'e9xico.\uc0\u8232
\fs19\fsmilli9600 \super 2\'a0
\fs32 \nosupersub Instituto de Matem\'e1ticas, Universidad Nacional Aut\'f3noma de M\'e9xico, Ciudad de M\'e9xico, C. P. 04510,\'a0 M\'e9xico.\uc0\u8232
\fs19\fsmilli9600 \super 3\'a0
\fs32 \nosupersub Departamento de Ciencias de la Computaci\'f3n, Instituto de Investigaciones en Matem\'e1ticas Aplicadas y en Sistemas, Universidad Nacional Aut\'f3noma de M\'e9xico, Ciudad de M\'e9xico, C. P. 04510, M\'e9xico. \uc0\u8232
\fs19\fsmilli9600 \super 4\'a0
\fs32 \nosupersub Instituto de F\'edsica, Universidad Nacional Aut\'f3noma de M\'e9xico, Ciudad de M\'e9xico, C. P. 04510, M\'e9xico.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 *Corresponding author: [email protected]
\f3\fs24 \
\pard\pardeftab720\sl880\partightenfactor0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 Abstract
\f1\fs36 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\b0\fs32 \cf2 \cb3 In contrast with robust systems that resist noise or fragile systems that break with noise, antifragility is defined as a property of complex systems that benefit from noise or disorder. Here we define and test a simple measure of antifragility for complex dynamical systems. In this work we use our antifragility measure to analyze real data from return prices in the stock\'a0 and cryptocurrency markets. Our definition of antifragility is the product of the return price and a perturbation. We explore different types of perturbations that typically arise from within the system. Our results suggest that for both the stock market and the cryptocurrency market, the tendency among the \'91top performers\'92 is to be robust rather than antifragile. It would be important to explore other possible definitions of antifragility to understand its role in financial markets and in complex dynamical systems in general.\'a0\'a0\'a0
\f3\fs24 \cb1 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl880\partightenfactor0
\ls1\ilvl0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 1. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Introduction
\fs56 \cb1 \uc0\u8232
\fs37\fsmilli18667 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 Some systems have the property of being
\f4\i robust
\f2\i0 , in the sense that they are not affected by the presence of noise. An analogous concept of robustness is stability, where a complex dynamical system recovers its original stable state after a small perturbation. On the other extreme, we have the property of being
\f4\i fragile
\f2\i0 , where the presence of noise breaks or collapses the system. The case of fragility corresponds to a state in unstable equilibrium, where a perturbation drives the system away from the original state.\'a0\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Now, let us describe the counterintuitive concept of
\f4\i antifragility,
\f2\i0 which is different from robustness and fragility. A system is antifragile when it benefits from noise or disorder. Thus, noise acts as a constructive element that allows the system to perform a function successfully. Therefore, one expects to encounter antifragility in a complex dynamical system that is nonlinear, has many degrees of freedom and is out of equilibrium.
\f3\fs24 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\fs32 \cf2 \cb3 The term antifragility was coined by Taleb in his book of the same name [1]. Taleb\'92s ideas have been further explored in different contexts not only in risk analysis and financial systems [2-4], but also as a means for strategic design and planning [5-7]. The original formal definition [8] (see also [9,10]), however, is difficult to use in practice and with real data. Therefore, we propose in this paper a novel definition of antifragility that can be implemented easily for a quantitative analysis and can be quite general.
\f3\fs24 \cb1 \
\f2\fs32 \cb3 This definition was inspired by some previous recent work, where it was proposed a pragmatic antifragility measure for complex systems, provided one can define measures of \'93satisfaction\'94 for each of its agents and \'93perturbation\'94 for the whole system. These measures are not supposed to be dependent on each other, as in Taleb\'92s original idea, which assumes that the satisfaction is a function that depends on the magnitude of the perturbation. In this work, antifragility is defined as the product of perturbation and satisfaction. Consequently, an agent is robust if its antifragility is close to 0 and fragile if it is negative. The agent is antifragile for positive values of the measure. This new definition of antifragility has been studied recently in the context of random and biological Boolean networks [11], multilayer random Boolean networks [12], convolutional neural networks [13], and ecosystems [14].\'a0\'a0
\f3\fs24 \cb1 \
\f2\fs32 \cb3 In this work we tested this antifragility measure with real data from the stock market and the cryptocurrency market. In this context of economics and finance, we used the price returns of assets as a measure of satisfaction, while\'a0 a perturbation measure for each system was defined as the mean of\'a0 different volatility parameters coming from within the markets \'96involving the price returns, the market capitalization and the volume (amount) of transactions of each asset, as well as a global mean index and the volatility index VIX (the stock symbol and the popular name for the Chicago Board Options Exchange's CBOE Volatility Index, a popular measure of the stock market's expectation of volatility based on S&P 500 index options). The antifragility measure was calculated as the price return multiplied by the perturbation. We evaluated this antifragility measure in daily, weekly, monthly and \cb1 semiannual\cb3 time-scales, and compared it with different \'93good-performance\'94 measures that we could extract from the data.\'a0
\f3\fs24 \cb1 \
\f2\fs32 \cb3 The identification of antifragility could be helpful in a wide range of scenarios. Particularly in economic and financial systems, which Taleb [1] suggested that should be antifragile. This work aims to apply Taleb\'92s ideas to real data of the stock and cryptocurrencies market.\'a0
\f3\fs24 \cb1 \
\f2\fs32 \cb3 The paper is organized as follows: The next section gives some background of other physical systems that \'93gain from disorder\'94, and the role of randomness and noise in financial systems.\'a0 Then, we explain our definition of antifragility in general and in the context of stock and cryptocurrency markets. In the following sections, we describe the data and the variables employed and the results. Finally, we end with a discussion and concluding remarks.
\f3\fs24 \cb1 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl880\partightenfactor0
\ls2\ilvl0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 2. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Background
\fs56 \cb1 \uc0\u8232
\fs37\fsmilli18667 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 In the introduction of this paper, we mentioned that antifragile systems gain in the presence of noise. This noise can come from an external perturbation in an open system or can be an internal noise due to the complexity of the system itself. However, this idea has been known in the field of complex dynamical systems, nonlinear stochastic dynamics and statistical physics for more than 40 years. Thus, \cb3 the concept of antifragility can be traced back to the studies of the constructive role of noise in these nonlinear systems out of equilibrium. \cb1 We will very briefly describe some of these phenomena that have been thoroughly studied in the literature: stochastic resonance, noise-induced transport and optimization by simulated annealing. All these phenomena share the property of gaining in the presence of a stochastic signal or perturbation, thermal noise or by being exposed to fluctuations.
\f3\fs24 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f0\b\fs32 \cf2 \cb3 2.1 Constructive role of noise in the physical sciences\'a0\'a0
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f4\i\b0\fs32 \cf2 \cb3 Stochastic resonance.-
\f2\i0 The idea of stochastic resonance is to add noise to a signal and measure the signal to noise ratio (SNR). Contrary to what is observed in linear systems, where the addition of noise decreases the SNR, some nonlinear systems exhibit an increase of the SNR as the intensity of the noise is increased; the signal reaches\'a0 a maximum after which the SNR starts to decrease. So, a SNR is a function of the intensity of the noise and has a maxi\cb1 mum, similar to a resonance in a physical system; thus, the name of stochastic resonance. It is worth mentioning that the phenomenon of stochastic resonance is manifested when the system is driven out of equilibrium by applying an external force. Thus, even though the original system can be in equilibrium without any external force or perturbation, once we perturb the system, the full system (the original one plus the external forcing) can be considered as an out-of-equilibrium system. This phenomenon\cb3 can be observed in physical and biological systems alike. The idea was introduced in the early 1980s by G. Parisi and collaborators. For a thorough review see [15]. Therefore, adding noise is beneficial and, in this sense, is closely related with the idea of antifragility.\'a0
\f3\fs24 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f4\i\fs32 \cf2 Noise-induced transport and Brownian motors.-
\f2\i0 \cb3 These phenomena refer to the counterintuitive idea of incorporating noise or a stochastic signal to enhance and generate transport in an asymmetric physical system. The asymmetry\'a0 can be spatial or temporal and it rectifies a symmetric noise generating a finite current. The phenomenon was studied by Richard Feynman in the early 1960s and gained attention in the 1990s with the study of thermal ratchets and Brownian motors that use Brownian motion on top of asymmetric ratchet potentials. One of the key motivations was to understand the mechanism behind motor proteins inside the cell and applications to nanoscience. For a review, see [16]. For a combination of Brownian motors and stochastic resonance, see [17]. Again, the main idea is that adding noise can be beneficial, as in an antifragile system.\'a0\'a0
\f3\fs24 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f4\i\fs32 \cf2 \cb3 Optimization by simulated annealing.-
\f2\i0 This is an important phenomenon where one implements simulated annealing, as in statistical mechanics, using thermal noise to escape from local minima in a landscape to arrive at a global minimum; thereby finding an optimization function. There is a vast literature around this idea. See for instance the original paper [18] and also [19].
\f3\fs24 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\fs32 \cf2 \cb3 There are other phenomena related to the idea of antifragility, like noise-induced synchronization in non-linear physical and biological systems [20], the \'93order from noise\'94 [21], and the \'93complexity from noise\'94 [22] principles.
\f3\fs24 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f0\b\fs32 \cf2 \cb3 2.2 Noise and fluctuations in economics and finance
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 Other important examples of complex dynamical systems that might be antifragile are economic and financial systems. Clearly, both are complex systems that are open, nonlinear, and have many agents that operate collectively, giving rise to emergent properties like the ones we observe in financial markets and other macroeconomic indicators. The question is if\'a0 we can find the phenomenon of antifragility in economics and finance. Recent developments have used different definitions of antifragility to study recovery [23], collaborative business ecosystems [24] and the purchasing and supply chain management [25], but all of them go back to Taleb\'92s original definition. Our approach is more heuristic in the sense that it aims at the identification and measurement of antifragility.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f0\b\fs32 \cf2 2.2.1 Noise
\f3\b0\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f4\i\fs32 \cf2 \'a0
\f2\i0 Let us start with noise. In the context of economics and financial markets, the idea of noise can have different meanings. Noise can emerge as a result of a large number of small events due to the collective actions of economic agents on a daily basis. On the other hand, a small number of extreme events, like crashes, can have severe consequences as well. Noise makes trading in financial markets possible, and thus allows us to observe prices for financial assets. Noise causes markets to be somewhat inefficient, but often prevents us from taking advantage of inefficiencies. Noise in the form of uncertainty about the actions to be taken by a large number of agents in the future makes it very difficult for us to adopt rational decisions, and act by guessing or intuition instead. As a result, we tend to consider price fluctuations\'a0 and price return in financial markets as a random or stochastic process, and act mainly by guessing. We are forced to act largely in the dark. See the classical paper of 1986 by Fisher Black titled simply \'93Noise\'94 [26]. The topic of noise has a vast literature and extends in many directions, from mathematics and natural sciences, all the way to medicine, psychology, economics, politics, and so on. See the very recent book by Daniel Kahneman titled \'93Noise: A flaw in human judgment\'94 [27].\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f0\b\fs32 \cf2 2.2.2 Perturbations
\f2\b0 \'a0
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Regarding the perturbations that we use in this paper, we consider only internal perturbations (or noise) that comes from inside the market itself. This endogenous noise of the markets include the fluctuations observed in the returns of prices, volatility and market capitalization. As mentioned before, this noise emerges from the collective activities of many economic agents. Many of these agents do not have information and sometimes are called \'93noise traders\'94 after the classical description by Black [26]. See also the book by Sornette [28], where different models are analyzed. These noise traders, among other internal considerations due to the complexity of markets, generate smaller scale shocks. However, financial markets can be affected by aggregate shocks as well; see [29,31]. These aggregate shocks arise due to external or exogenous events to the market, such as wars, terrorist attacks, massive migrations, political turmoils, or a pandemic. In our study here, we are not considering the effect of these aggregate shocks, but it would be important to take them into account. That would be an interesting extension to consider for future research.\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f0\b\fs32 \cf2 2.2.3 Price returns
\f2\b0 \'a0
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Finally, let us discuss the last piece needed to construct our antifragility measure. We will see that this measure is the product of price returns and perturbations.
\f3\fs24 \
\f2\fs32 Price returns are one of the central quantities to study in the financial markets. It refers to the difference in prices of an asset evaluated at two different times. It can be a time difference of seconds, days, weeks, years or decades. There are several definitions of these price returns that can be ratios or percentage of price fluctuations, or differences between the logarithm of price (the so-called log returns).\'a0 This central quantity is considered to be a random variable, according to the discussion above, and is therefore natural to study its statistical properties. In particular, it is important to study the probability distribution of price returns. An important result that has been established is that the stock returns probability distribution has a power law or fat tail characterized by an exponent close to three, the so-called cubic law (see [32] for a recent review of this cubic law and other power laws). These power-law tails in the distribution have important consequences in the dynamics of the price returns: due to these long tails, we expect to have large fluctuations and extreme events in the time series. These extreme events correspond to crashes in the stock market and, from the viewpoint of the statistical physics of complex systems, can be understood as a scale-free dynamics near criticality [28]. This scale-free dynamics implies that the system is prone to have large fluctuations and, in this sense, becomes less stable. The consequences of the power-law distributions of the returns have triggered a whole new field of study called
\f4\i econophysics
\f2\i0 [32,33], where there is an emphasis in trying to understand the origin of this long-range fat-tails distributions. The main idea is to model economics and finance as a complex system using the tools of statistical physics and nonlinear dynamics: for instance, using agent-based models as a \'93microscopic\'94 description to explain the emergent phenomena observed in financial markets. At the end, the scale-free power laws observed in the return distribution implies some sort of phase transition where the system can become unstable (or metastable) locally and starts to develop a long-range dynamics.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f0\b\fs32 \cf2 2.2.4 Complexity in Economics and Finance
\f3\b0\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 It is worth mentioning briefly new developments of complexity science in economics and finance. There is a vast literature around the topic. Recent papers dealing with the collective dynamics of stock markets, universal features and complexity in financial data are [34-37] and, in particular for the analysis of cryptocurrency markets [38-43].
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Finally, the application of the emergent science of networks to financial systems is an important field of research; for a very recent review see [44] and references therein. Other important reviews on the foundations of complexity economics are [45] and in economic complexity theory and applications [46]. See also the book by Hidalgo [47].\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 It would be interesting to consider for future research the incorporation of the concept of antifragility as a feature of complex dynamical systems in general, and in particular from the viewpoint of complexity and networks in economics and finance.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl880\partightenfactor0
\ls3\ilvl0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 3. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Materials and Methods
\fs56 \cb1 \uc0\u8232
\fs37\fsmilli18667 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 \cb3 We now describe the data set that we used throughout this paper.
\f1\b\fs36 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 We analyzed a data set [51] with historical daily data (open price and volume) of about 7,000 stocks from the US Stock Market. Such a dataset considered only active stocks by the end of 2017 and there is no data from stocks that disappeared from the market before that date. We truncated the data starting from 1990.
\f3\fs24 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\fs32 \cf2 In the case of cryptocurrencies, the data [52] consist of daily historical data (open price, market capitalization and volume) of around 1800 assets, the oldest one starts in 2013 and ends in November 2018. \uc0\u8232 The raw data may be found in [51,52]. And all the processed data is available in this purl: {\field{\*\fldinst{HYPERLINK "https://purl.prod.archive.org/purl/AFSCM_data/processed-data"}}{\fldrslt \cf4 \ul \ulc4 \strokec4 https://purl.prod.archive.org/purl/AFSCM_data/processed-data}}.
\f1\b\fs28 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f0\fs32 \cf2 \cb3 3.1 A measure of satisfaction
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\b0\fs32 \cf2 \cb3 We will start our analysis with the variation in time of the price of a stock or cryptocurrency. Let
\f4\i p
\fs19\fsmilli9600 \sub i
\f2\i0\fs32 \nosupersub \cb1 denote the price of a stock, and
\f4\i q
\fs19\fsmilli9600 \sub i
\f2\i0\fs32 \nosupersub indicate the price of a cryptocurrency, at time
\f5\i\b i
\f2\i0\b0 , where
\f5\i\b i=1,2,...,N
\f2\i0\b0 is a discrete variable indicating the time when the price is measured. The stock return is the difference between the prices of\'a0 two consecutive times. That is:
\f1\b\fs28 \
\pard\pardeftab720\fi960\sl760\qc\partightenfactor0
\f2\b0\fs32 \cf2 \'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0S(i)=pi-pi-1 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0\'a0 \'a0 \'a0 \'a0 (1)
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 This quantity, the stock return, can be considered as a measure of \'93satisfaction\'94, being positive when the price increases and negative otherwise. We will refer sometimes to the stock return in Eq. (1) as \'93satisfaction\'94 in order to connect with a set of previous papers of one of the authors (CG), in which the concept of satisfaction was used \'96together with this definition of antifragility\'96 for different fields such as ecology and networks (see [11-13]).
\f3\fs24 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f0\b\fs32 \cf2 \cb3 3.2 Definition of antifragility
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 In order to quantify how sensible the stock return of a given asset is to an external perturbation, we introduce here a definition of antifragility. We consider markets with stock returns
\f4\i S
\f2\i0 and an external time-dependent perturbation
\f4\i P
\f2\i0 . Let
\f5\i\b S(x,i)
\f2\i0\b0 be the stock return of asset
\f5\i\b x
\f2\i0\b0 at time
\f5\i\b i
\f2\i0\b0 ,
\f4\i
\f2\i0 and
\f5\i\b P(i)
\f4\b0
\f2\i0 be the
\f4\i perturbation
\f2\i0 measure of the system at time
\f5\i\b i
\f2\i0\b0 . We define the antifragility of asset
\f5\i\b x
\f2\i0\b0 at time
\f5\i\b i
\f2\i0\b0 as:\'a0
\f3\fs24 \
\pard\pardeftab720\sl760\qr\partightenfactor0
\f0\b\fs32 \cf2 A
\f2\b0 (x,i)=S(x,i) \'b7 P(i). (2)
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 The global
\f4\i antifragility
\f2\i0 of asset x
\f4\i
\f2\i0 is then defined as the mean value of
\f5\i\b A(x,i)
\f2\i0\b0 over the whole time interval under consideration,
\f4\i i.e.
\f3\i0\fs24 \
\pard\pardeftab720\fi960\sl760\partightenfactor0
\f2\fs32 \cf2 \'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0
\fs37\fsmilli18667 A(x)= meani(A(x,i)
\fs32 ), \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (3)
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 where
\f5\i\b mean
\fs19\fsmilli9600 \sub i
\f2\i0\b0\fs32 \nosupersub refers to the arithmetic mean over index
\f5\i\b i
\f3\i0\b0\fs24 \
\f2\fs32 \'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0
\fs37\fsmilli18667 meani(ai)=1n(a1+...+an)
\fs32 .\'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (4)
\f3\fs24 \
\f2\fs32 This definition of the concept of antifragility allows us to classify the systems as antifragile, robust and fragile depending on the overall result of the stock returns and the perturbation. We consider that a stock is antifragile if the stock return is positive even in the presence of a perturbation. On the other hand, a stock is robust if the stock return is not affected by the perturbation. Finally, a stock is fragile if the stock return decreases in the presence of the perturbation. These considerations apply both to stocks and cryptocurrencies.
\f3\fs24 \
\pard\pardeftab720\sl760\sa106\partightenfactor0
\f0\b\fs32 \cf2 \cb3 3.3 Normalization for returns and perturbations of stocks and cryptocurrencies
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 Throughout this study two different systems were considered: the stock market and the cryptocurrency market. We used in each case different perturbation measures based on the available data. However, we consider the return (price differences) as a measure of satisfaction in both cases.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Since we are interested in measuring and comparing the antifragility in different systems, we normalized the stock return
\f5\i\b S(i)
\f2\i0\b0 and the perturbation
\f5\i\b P(i)
\f2\i0\b0 in such a way that both quantities are bounded in the intervals [-1, 1] and [0,1], respectively.\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 For the stock return
\f5\i\b S
\f2\i0\b0 , we use a new normalized return
\f5\i\b S\'92
\f2\i0\b0 as
\f3\fs24 \
\pard\pardeftab720\sl880\qj\partightenfactor0
\f2\fs37\fsmilli18667 \cf2 \'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0S'=Smax(|S|) \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0
\fs32 (6)
\f3\fs24 \
\pard\pardeftab720\sl760\qj\partightenfactor0
\f2\fs32 \cf2 where
\f5\i\b |S|
\f2\i0\b0 is the absolute value of
\f5\i\b S
\f2\i0\b0 , and
\f5\i\b max
\f0\i0 (|
\f5\i S|
\f0\i0 )
\f2\b0 is its maximum. With the definition given by Eq. (3),
\f5\i\b S\'92
\f2\i0\b0 is a real number in the interval [-1,1].
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\qj\partightenfactor0
\f2\fs32 \cf2 For the perturbation
\f5\i\b P
\f2\i0\b0 , we use a new normalized perturbation
\f5\i\b P\'92
\f2\i0\b0 as\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl880\qj\partightenfactor0
\f2\fs37\fsmilli18667 \cf2 \'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0P'=P -min(P)max(P) - min(P).\'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0
\fs32 (7)
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Clearly,
\f5\i\b P\'92
\f2\i0\b0 is a real number in the interval [0,1].\'a0
\f3\fs24 \
\f2\fs32 These normalizations imply that the antifragility
\f5\i\b A'=S'\'b7P'
\f2\i0\b0 , is a real number in the interval [-1,1].\'a0 \uc0\u8232 In the following sections, we will assume that all the perturbations and returns have been already normalized in this way. We will also assume that the quantities under consideration such as the price
\f5\i\b p
\fs19\fsmilli9600 \sub i
\f2\i0\b0\fs32 \nosupersub ,\'a0 the volume
\f5\i\b v
\fs19\fsmilli9600 \sub i
\f2\i0\b0\fs32 \nosupersub (the number of shares that are sold or traded), and the market capitalization
\f5\i\b m
\fs19\fsmilli9600 \sub i
\f2\i0\b0\fs32 \nosupersub (the market value as of a publicly traded company's outstanding shares) at time
\f5\i\b i
\f2\i0\b0 , have also been normalized to be in the interval [0,1].
\f3\fs24 \
\pard\pardeftab720\sl760\sa106\partightenfactor0
\f0\b\fs32 \cf2 \cb3 3.4 Perturbation Measures
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 We considered perturbations coming from different sources for the stock market and for the cryptocurrencies market, according to the data we analyzed, all of them internal in accordance with the discussion in Section 2.2.2.\'a0
\f3\fs24 \
\f2\fs32 Essentially, we associate perturbations with fluctuations or volatility. So, we computed this measure by assessing how much the assets changed their parameters (price and volume in the case of stocks, and also market capitalization in the case of cryptocurrencies) in two consecutive observations.
\f3\fs24 \
\f2\fs32 In the case of stocks, as our data did not include values of market capitalization, we included other indicators, such as the volatility index, with symbol VIX, and the mean of the volatility of Nasdaq, Dow Jones and S&P 500 indexes.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 More concretely, let
\f5\i\b p(x)
\fs19\fsmilli9600 \sub i
\f2\i0\b0\fs32 \nosupersub ,
\f5\i\b v(x)
\fs19\fsmilli9600 \sub i
\f2\i0\b0\fs32 \nosupersub \'a0and
\f5\i\b m(x)
\fs19\fsmilli9600 \sub i
\f2\i0\b0\fs32 \nosupersub be the price, volume, and market capitalization of an asset
\f5\i\b x
\f2\i0\b0 at time
\f5\i\b i
\f2\i0\b0 , respectively. Then, in the case of stocks, we defined the different perturbations as:
\f3\fs24 \
\f2\fs32 \'a0
\f3\fs24 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl760\partightenfactor0
\ls4\ilvl0
\f2\fs32 \cf2 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Ppr(i)=meanx Ppr(x,i), \'a0 where\'a0 \'a0 Ppr(x,i)=|p(x)i-p(x)i-1|, \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (8)\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\uc0\u8232 \
\ls4\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Pvl(i)=meanx Pvl(x,i),\'a0 \'a0 where\'a0 \'a0 Pvl(x,i)=|v(x)i-v(x)i-1|, \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (9)\uc0\u8232 \
\ls4\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Pnp(i)=meanx Pnp(x,i),\'a0 \'a0 where \'a0 Pnp(x,i)= |S(x,i)|.\'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (10)\uc0\u8232 \
\ls4\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Pvix(i)\'a0 is the value of the volatility index VIX at time i.\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\uc0\u8232 \
\ls4\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 P3m(i) is the average of absolute changes of the Nasdaq, Dow Jones and S&P 500 indexes between time
\f5\i\b i-1
\f2\i0\b0 and time
\f5\i\b i
\f2\i0\b0 . That is, if
\f5\i\b N(i), D(i), &(i),
\f2\i0\b0 are the normalized values corresponding to such indices at time
\f5\i\b i
\f2\i0\b0 , then:\uc0\u8232 \
\pard\pardeftab720\li960\sl760\partightenfactor0
\cf2 \'a0
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 P3m(i)=13\uc0\u8729 [ |N(i)-N(i-1)|+|D(i)-D(i-1)|+|&(i)-&(i-1)|] \'a0 \'a0 \'a0 \'a0 (11)\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Finally, the perturbation measure for stocks is defined as the mean value of these four perturbation sources:\'a0
\f3\fs24 \
\f2\fs32 \'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0Pstk(i)=
\fs37\fsmilli18667 15
\fs32
\f6 \uc0\u10222
\f2 Ppr(i)+Pvl(i)+Pnp(i)+Pvix(i) + P3m(i)
\f6 \uc0\u10223
\f2 . \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (12)
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 In the case of cryptocurrencies we considered:\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl760\partightenfactor0
\ls5\ilvl0
\f2\fs32 \cf2 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Ppr (i)=meanx Ppr(x,i), \'a0 where\'a0 \'a0 Ppr(x,i)= |p(x)i-p(x)i-1|, \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (13)\uc0\u8232 \
\ls5\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Pvl (i)=meanx Pvl(x,i), \'a0 where\'a0 \'a0 Pvl(x,i)= |v(x)i-v(x)i-1|, \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (14)\uc0\u8232 \
\ls5\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Pmk (i)=meanx Pmk(x,i), \'a0 where \'a0 Pmk(x,i)= |m(x)i-m(x)i-1|, \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (15)\uc0\u8232 \
\ls5\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Pnp(i)=meanx Pnp(x,i),\'a0 \'a0 where \'a0 Pnp(x,i)= |S(x,i)|.\'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 \'a0 (16)\uc0\u8232 \u8232 \u8232 \
\pard\pardeftab720\sl760\partightenfactor0
\cf2 The values of
\f5\i\b P
\fs19\fsmilli9600 \sub pr
\fs32 \nosupersub (x,i)
\f2\i0\b0 and
\f5\i\b P
\fs19\fsmilli9600 \sub np
\fs32 \nosupersub (x,i)
\f2\i0\b0 are different in the sense that, for
\f5\i\b P
\fs19\fsmilli9600 \sub np
\fs32 \nosupersub (x,i)
\f2\i0\b0 , the prices were normalized before taking the mean over all the assets and, for
\f5\i\b P
\fs19\fsmilli9600 \sub pr
\fs32 \nosupersub (x,i)
\f2\i0\b0 , afterwards. So the perturbation contributed by an asset in the former measure is equal to another asset of different price if they changed the same percentage of their price. While in the latter, the perturbation of the system is governed by expensive cryptocurrencies.
\f3\fs24 \
\f2\fs32 \'a0
\f3\fs24 \
\f2\fs32 Correspondingly, the definition of the perturbation measure is defined as the mean value of these four perturbation sources.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl880\qr\partightenfactor0
\f2\fs37\fsmilli18667 \cf2 Pcrp(i) =14
\fs32
\f6 \uc0\u10222
\f2 Ppr(i)+Pvl(i)+Pmk(i) + Pnp(i)
\fs37\fsmilli18667 \'a0
\f6\fs32 \uc0\u10223
\f2 . (17)
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f0\b\fs32 \cf2 \cb3 3.5 Computation of antifragility
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 We computed antifragility values for every asset in each system considering different time-scales: daily, weakly, monthly and yearly \'96 the latter only plotted in the case of stocks. As we will see in the following sections, the behavior of our antifragility measure does not change drastically between time-scales. This observation is consistent with previous findings on the distribution of stock and cryptocurrencies returns [38,48-50]. We calculate the antifragility using Eqs. (1) and (2), considering the perturbation given by Eq. (12) (for stocks) and Eq. (17) (for cryptocurrencies).\'a0
\f3\fs24 \
\pard\pardeftab720\sl760\sa160\partightenfactor0
\f0\b\fs32 \cf2 \cb3 3.6 Performance measures
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 We compared quantitatively the antifragility values with different \'93performance measures\'94 listed next:\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl760\partightenfactor0
\ls6\ilvl0
\f0\b\fs32 \cf2 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 age
\f2\b0 : age of the asset in days.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pct_dlt-pr
\f2\b0 : maximum price minus minimum price divided by the mean price.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pct_dlt-mk
\f2\b0 : same as before but using market capitalization instead of price.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pct_dlt-vl
\f2\b0 : same as before but using volume.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pct_pr-f-i
\f2\b0 : final price minus initial price divided by the mean price.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pct-mk-f-i
\f2\b0 : same as before but using market capitalization instead of price.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pct-vl-f-i
\f2\b0 : same as before but using volume.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pr_mea
\f2\b0 : mean price.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 pr_std
\f2\b0 : price standard deviation.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 mk_mea
\f2\b0 : mean market capitalization.
\f7 \uc0\u8232 \
\ls6\ilvl0
\f0\b \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 vl_mea
\f2\b0 : mean volume.
\f7 \uc0\u8232 \
\pard\pardeftab720\sl280\partightenfactor0
\f3\fs24 \cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 We recall that the variables which involve the market capitalization were only used in the case of cryptocurrencies, as we do not have this data for stocks. Instead, we used lists of the best stocks of the year (from 2010 to 2017) according to different stock market analysts, such as Forbes, Yahoo Finance, Stock Market Watch, among others. We will often refer to the stocks belonging to such lists as the \'91top-performers\'92, and to the variables listed above as the \'91good-performance\'92 measures.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl880\partightenfactor0
\ls7\ilvl0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 4. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Results and Discussion
\fs56 \cb1 \uc0\u8232
\fs37\fsmilli18667 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 As an example, in Fig. 1 we show, for two different cryptocurrencies (ethereum and bitcoin),\'a0 a time series for perturbation, satisfaction (return) and antifragility. Notice that the time scales are different. We used normalized values as explained above.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl700\qc\partightenfactor0
\f2\fs29\fsmilli14667 \cf2 Figure 1: Time-series of the values of perturbation, satisfaction and anti-fragility of ethereum and bitcoin cryptocurrencies in weekly and monthly intervals, respectively. Notice that the time intervals are different.We calculated the satisfaction (price return) using Eq. (1) for the discrete time\'a0
\f5\i\b\fs32 i=1,2,...,N
\f2\i0\b0\fs29\fsmilli14667 ; and the antifragility using Eq. (2). For the perturbation in Eq. (2) we use the average quantity for cryptocurrencies given by Eq. (17). We plot this perturbation as a third curve.
\fs32 \'a0
\f3\fs24 \
\pard\pardeftab720\sl760\partightenfactor0
\f0\b\fs32 \cf2 \uc0\u8232 \cb3 4.1 Antifragility in the stock and cryptocurrency markets
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 \cb3 In what follows, we will present a set of figures where we analyze the data of assets for the stock and cryptocurrency markets. We will show the values of antifragility versus the different performance measures listed above in Se\cb1 ction 3.6.
\f1\b\fs28 \
\pard\pardeftab720\sl280\partightenfactor0
\f3\b0\fs24 \cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 \cb3 As a first example, we plot in Fig. 2 the antifragility
\f5\i\b A
\f2\i0\b0 , that we indicated as \'93aft\'94, against one of the performance measures. In this case, we used the mean price (pr_mean) of several cryptocurrencies. The mean price is evaluated considering the full range of the discrete time in the data set. We consider \cb1 weekly prices here\cb3 . We are plotting a green dot for each type of cryptocurrency and we have around 1800 different cryptocurrencies in the data set. We only indicate in the figure the name of some of the cryptocurrencies for clarity. It is worth remembering here the meaning of antifragility
\f5\i\b A
\f2\i0\b0 : we consider that an asset is robust if
\f5\i\b A
\f2\i0\b0 is close to 0,\'a0 fragile if it is negative, and antifragile if it is positive. Notice that the dots are centered around zero with a considerable dispersion.\'a0\'a0
\f1\b\fs28 \cb1 \
\pard\pardeftab720\sl280\partightenfactor0
\f3\b0\fs24 \cf2 \
\
\pard\pardeftab720\sl700\qc\partightenfactor0
\f2\fs29\fsmilli14667 \cf2 Figure 2: A typical example of the different types of studies that we analyze. We compare the antifragility values (in the
\f4\i x-
\f2\i0 axis) of every cryptocurrency in a weekly scale (according to the green color), with its mean price, indicated by pr_mea, (in the
\f4\i y-
\f2\i0 axis). Note that in this case the symlog scale is just a log scale because there are no negative values in the
\f4\i y-
\f2\i0 axis.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 \cb3 We now show a series of similar figures of antifragility
\f4\i vs
\f2\i0 different performance measures. We will consider different time scales for the antifragility, distinguished with a corresponding color: daily in blue, weekly in green, monthly in red and semiannual (only included in the case of stocks) in yellow. \cb1 In Figs. 3 and 5, the horizontal axis represents antifragility and the value of
\f5\i\b A
\f2\i0\b0 is centered around zero. In these figures, each dot represents a different asset in the stock market, and we indicate inside each figure just a few of their names for clarity. The number of stocks analyzed is about 7000.
\f1\b\fs28 \
\pard\pardeftab720\sl280\partightenfactor0
\f3\b0\fs24 \cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 We will start with Fig. 3(a,b,c,d) that contains four plots: each one representing a different time scale. In Fig. 3(a), we are plotting the age (measured in days) of the asset in question. In Fig. 3(b), we show the maximum volume minus the minimum volume divided by the mean volume (indicated by \'93pct_dlt-vol\'94). In Fig. 3(c), we plot the mean price, and in Fig. 3(d), we show the mean volume.\'a0
\f3\fs24 \
\f2\fs32 About this figure we can say the following:
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl760\partightenfactor0
\ls8\ilvl0
\f2\fs32 \cf2 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 1. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 The qualitative behavior of the antifragility
\f5\i\b A
\f4\b0
\f2\i0 is the same for different times scales: daily (blue), weekly (green), monthly (red) and semiannual (yellow).\'a0\'a0\uc0\u8232 \
\ls8\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 2. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 There are no linear correlations between any of the \'91good-performance\'92 measures and the antifragility measures.\uc0\u8232 \
\ls8\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 3. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 The higher values of the \'91good-performance\'92 measures concentrate around the robust (
\f5\i\b A
\f0\i0 =0
\f2\b0 ) axis. We used different scales in order to better illustrate this feature.\'a0\uc0\u8232 \
\ls8\ilvl0\kerning1\expnd0\expndtw0 \outl0\strokewidth0 {\listtext 4. }\expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 The behavior pointed out in (3) is clearer and more consistent for different time scales among the \'91good-performance\'92 measures in all of these figures.\uc0\u8232 \
\pard\pardeftab720\sl280\partightenfactor0
\f3\fs24 \cf2 \
\pard\pardeftab720\sl360\partightenfactor0
\f2\fs32 \cf2 \
\pard\pardeftab720\sl760\qc\partightenfactor0
\cf2
\fs26\fsmilli13333 Figure 3: Comparison of antifragility values and \'91good-performance\'92 measures in stocks.\'a0
\f3\fs24 \
\pard\pardeftab720\sl640\qc\partightenfactor0
\f2\fs26\fsmilli13333 \cf2 There are four images in the figures (a,b,c,d),\'a0 corresponding to a \'91good-performance\'92 measure:
\f0\b age, pct_dlt-vol,\'a0 pr_mea, vl_mea
\f2\b0 . Each subplot corresponds to a timescale (daily in blue, weekly in green, monthly in red, semiannual in yellow). The plots compare the antifragility
\f5\i\b A
\f2\i0\b0 measure (in the
\f4\i x
\f2\i0 -axis) to the corresponding \'91good-performance\'92. We observe how higher values of the \'91good-performance\'92 measure concentrate in the robust axis
\f5\i\b A
\f0\i0 = 0
\f2\b0 . See the text for details of this figure.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 We now plot, in Fig. 4, the probability distributions of the antifragility for different time scales, indicated by different colors as shown in the inset. Notice that these distributions are close to normal distributions.\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl640\qc\partightenfactor0
\f2\fs26\fsmilli13333 \cf2 Figure 4: Probability distribution of the antifragility
\f5\i\b A
\f2\i0\b0 for stocks for different time-scales. The dashed line represents the mean antifragility of the set of \'91top-performers\'92. We observe that the mean
\f5\i\b A
\f2\i0\b0 of \'91top-performers\'92 is only greater than the mean
\f5\i\b A
\f4\b0
\f2\i0 in the daily timescale.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Now we turn our attention to the case of the cryptocurrency market.\uc0\u8232 In Fig. 5, we carried on essentially the same analysis as in the case of stocks. Most of the observations are similar in this case. Among the following plots, colors represent a time scale: daily in blue, weekly in green, monthly in red.
\f3\fs24 \
\f2\fs32 In Fig. 5(a), we are plotting the age that corresponds to the age in days of the asset in question. In Fig. 5(b), we show the maximum volume minus the minimum volume divided by the mean volume (indicated by \'93pct_dlt-vol\'94). In Fig. 5(c), we plot the mean price. Finally, in Fig. 5(d), we plot the same as in (b) but with price instead of volume (indicated by \'93pct_dlt-pr\'94).
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 We observe a similar behavior as in the case of stocks. The previous observations (1-4) also hold in this case. And it can be observed a greater concentration of assets on the \'91fragile\'92 side.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\qc\partightenfactor0
\f2\fs32 \cf2 \'a0
\fs26\fsmilli13333 Figure 5: Comparison of anti-fragility values and \'91good-performance\'92 measures in cryptocurrencies.\'a0
\f3\fs24 \
\pard\pardeftab720\sl640\qc\partightenfactor0
\f2\fs26\fsmilli13333 \cf2 There are three frames in the image, each of them corresponds to one \'91good-performance\'92 measure, from up to bottom:
\f0\b age, pct_dlt-vl, pr_mea, pct_dlt-pr
\f2\b0 . See text. Each subplot of these frames corresponds to a timescale. Each plot compares the corresponding
\f5\i\b A
\f2\i0\b0 measure (x-axis) to the \'91good-performance\'92 measure under consideration. We observe how higher values of the \'91good-performance\'92 measure concentrate in the robust axis
\f5\i\b A
\f0\i0 =0
\f2\b0 .\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Finally, the probability distributions of the antifragility measures, shown in Fig. 6, are close to skew-normal distributions, with a right asymmetry towards lower values of antifragility. The probability distributions of the antifragility values of the \'91top-performers\'92 seem to improve from the rest. See Fig. 6.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\
\pard\pardeftab720\sl640\qc\partightenfactor0
\f2\fs26\fsmilli13333 \cf2 Figure 6: Probability distribution of the antifragility
\f5\i\b A
\f2\i0\b0 of cryptocurrencies in different time-scales. The dashed line represents the mean antifragility of the set of \'91top-performers\'92. We observe that the mean
\f5\i\b A
\f2\i0\b0 of \'91top-performers\'92 is greater than the mean
\f5\i\b A
\f4\b0
\f2\i0 in every timescale.
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\
\pard\pardeftab720\sl880\partightenfactor0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \'a0\'a0\'a0\'a05. Discussion and Conclusions\'a0
\f1\fs36 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 Antifragility occurs when systems benefit from perturbations. This is opposite to fragility, where noise or changes damage a system. The absence of fragility, when perturbations do not affect a system, is robustness. In the introduction of this paper, we briefly mentioned some systems that benefit in the presence of noise. We mentioned some phenomena that have been thoroughly studied recently: stochastic resonance, noise-induced transport and optimization by simulated annealing, among others. All these phenomena share the property of gaining in the presence of a stochastic signal or perturbation, thermal noise or being exposed to other fluctuations.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 As mentioned in the introduction, other important examples of complex dynamical systems that might have antifragility, are economic and financial systems. Clearly, both are complex systems that are open, nonlinear, and have many agents that operate collectively, giving rise to emergent properties like the ones we observe in financial markets and other economic indicators.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 An important question that we may ask is: can we identify the phenomenon of antifragility in economics and finance? As far as we know, this question has not been answered in a definite way and, worse than that, the question usually is not even asked or posed in these terms. Therefore, the main goal of this paper is: firstly, to pose this question explicitly and, secondly, to try to answer it by proposing a novel measure of antifragility for stocks and cryptocurrencies markets.\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Our proposal is to define explicitly the antifragility in mathematical terms as a multiplicative stochastic process. Our definition is simple: antifragility is the product of returns and perturbations. Based on this definition, we analyze the returns to be used: price returns of stocks and cryptocurrencies in the market. As perturbations, we used different options that come from the market itself, like fluctuations of price returns, volume, market capitalization and global average indexes. One can think of these perturbations as endogenous shocks. We have not studied here the case of exogenous shocks or aggregate shocks, but it could be interesting to analyze these cases in a further analysis for the future. Finally, with these returns and perturbations, we calculated the antifragility measure. Both the returns and the perturbations were obtained from data sets that are publicly available, as indicated in the text.\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0
\f3\fs24 \
\f2\fs32 Once we obtain the antifragility, we explore its dependence against different performance measures: average quantities related with price, volume, and market capitalization.
\f3\fs24 \
\f2\fs32 It is worth mentioning that, by defining antifragility in the way we did, there are first-order effects that can be seen in a set of assets whose antifragility and satisfaction (price returns) time series are highly correlated (either positively or negatively). This happens for different reasons, either they are very new assets and so there are few observations, or they had almost no change in some of their parameters such as a constant price or volume.\uc0\u8232 \u8232
\f3\fs24 \
\f2\fs32 As a matter of conclusion of this study, we can point out the following:
\f3\fs24 \
\f2\fs32 The results obtained with our definition of antifragility indicate that both the stock and the cryptocurrencies markets do not show an antifragile character in a clear way and seem to be favored by robustness instead. There were no correlations between our antifragility measures and the different performance measures that we analyze, while the best performance assets seem to fall within the category of\'a0 robustness. In virtually every analysis we carried out, the highest and lowest antifragility values were obtained for the newest assets and for those with the lowest transaction volume. For example, the average age of the top ~300 antifragile stocks is 302 days, the oldest of them is less than 3 years old, and over 80% are younger than a year. Moreover their mean volume of transactions is around 5 times smaller than the mean volume of transactions overall. It can be observed that, in both scenarios, the assets tend to evolve towards robustness. In Fig 7 we show this feature by plotting the cumulative mean of the antifragility measure over time. In Fig. 7(a), it is shown this evolution for a selected set of \'91top-performing\'92 stocks in a monthly scale for about twelve years; Fig. 7(b) shows the same time scale and span but with a random set of assets; and Fig. 7(c) shows a daily evolution of a selected set of cryptocurrencies for one year.\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl640\qc\partightenfactor0
\f2\fs26\fsmilli13333 \cf2 Figure 7: Cumulative mean of antifragility of few assets. The
\f4\i x-
\f2\i0 axes shows the date and the
\f4\i y-
\f2\i0 axis the cumulative antifragility measure. Figure (a) shows the cumulative monthly antifragility (expressed as \'91caf\'92 in the image) of selected \'91top-performing\'92 stocks ,\'a0 (b) shows the cumulative monthly antifragility of 25 random\'a0 stocks, and (c) shows a daily evolution of a selected set of cryptocurrencies for one year.
\fs32 \'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\fs32 \cf2 Finally, it is important to stress that these results depend obviously on the definition of antifragility that we used. It would be interesting to address other possible definitions that capture the essence of the phenomenon. Meanwhile, we sincerely hope that this work stimulates the interest of researchers to study antifragility as an important feature in financial systems and in complex dynamical systems in general.\'a0\'a0
\f3\fs24 \
\pard\pardeftab720\sl280\partightenfactor0
\cf2 \
\pard\pardeftab720\sl880\partightenfactor0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \'a0\'a0\'a0\'a06. Data Availability
\f1\fs36 \cb1 \
\pard\pardeftab720\sl760\partightenfactor0
\f2\b0\fs32 \cf2 We analyzed a data set with historical daily prices and volumes of more than 7,000 stocks from the US Stock Market [51]. We truncated the data starting from 1990. This data set considered only active stocks by the end of 2017 and there is no data from stocks that disappeared from the market before that date.
\f3\fs24 \
\f2\fs32 In the case of cryptocurrencies, the data [52] consisted of historical daily data (open price, market capitalization and volume) of around 1800 assets, the oldest being from 2013 and up to November 2018. Instructions for accessing the processed data sets can be found in this purl: {\field{\*\fldinst{HYPERLINK "https://purl.prod.archive.org/purl/AFSCM_data/processed-data"}}{\fldrslt \cf4 \ul \ulc4 \strokec4 https://purl.prod.archive.org/purl/AFSCM_data/processed-data}}. \uc0\u8232 \u8232
\f3\fs24 \
\pard\pardeftab720\sl880\partightenfactor0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \'a0\'a0\'a0\'a07. Conflicts of Interest
\f1\fs36 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\b0\fs32 \cf2 The authors declare that there is no conflict of interest regarding the publication of this paper.
\f3\fs24 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f0\b\fs32 \cf2 \cb3 7.1 Funding Statement
\f1\fs28 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\b0\fs32 \cf2 \cb3 This project was supported by an award from the Fundaci\'f3n Marcos Moshinsky A. C. and
\fs36 UNAM's PAPIIT IN107919 and IV100120 grants.
\f3\fs24 \cb1 \
\pard\pardeftab720\sl880\partightenfactor0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \'a0\'a0\'a0\'a08. Author contributions
\f1\fs36 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\b0\fs32 \cf2 CG: Conceptualization; Funding acquisition; Project administration; Supervision; Methodology; Validation; Writing - review & editing.\uc0\u8232 DA: Data curation; Formal analysis; Investigation; Methodology; Resources; Software; Visualization; Writing - original draft.\u8232 JLM: Formal analysis; Investigation; Validation; Writing - original draft; Writing - review & editing.
\f3\fs24 \
\pard\pardeftab720\sl880\sa373\partightenfactor0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \'a0\'a0\'a0\'a09. Acknowledgments
\f1\fs36 \cb1 \
\pard\pardeftab720\sl760\sa373\partightenfactor0
\f2\b0\fs32 \cf2 \cb3 We are grateful to Ewan Colman, Hyobin Kim and Dante P\'e9rez for interesting discussions and suggestions; and to the C3 community, specially to Jos\'e9 Luis Gordillo for providing technical support with the Center\'92s Cluster usage.
\f3\fs24 \cb1 \
\pard\pardeftab720\sl880\partightenfactor0
\f0\b\fs37\fsmilli18667 \cf2 \cb3 \'a0\'a0\'a0\'a010. References
\f1\fs36 \cb1 \
\pard\pardeftab720\fi-960\sl640\partightenfactor0
\f2\b0\fs26\fsmilli13333 \cf2 \cb3 [1] N. N. Taleb, \'93Antifragile: Things That Gain from Disorder\'94, Random House, New York, NY, USA, 2012.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [2] Aven, T. (2015). The concept of antifragility and its implications for the practice of risk analysis. Risk analysis, 35(3), 476-483.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [3] Cavanagh, C. J. (2017). Resilience, class, and the antifragility of capital. Resilience, 5(2), 110-128.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [4] White, L. H. (2013). Antifragile banking and monetary systems. Cato J., 33, 471.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [5] de Bruijn, H., Gr\'f6\'dfler, A., & Videira, N. (2020). Antifragility as a design criterion for modeling dynamic systems. Systems Research and Behavioral Science, 37(1), 23-37.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [6] Ble\uc0\u269 i\u263 , I., & Cecchini, A. (2017). On the antifragility of cities and of their buildings. City, Territory and Architecture, 4(1), 3.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [7] Johnson, J., & Gheorghe, A. V. (2013). Antifragility analysis and measurement framework for systems of systems. International Journal of Disaster Risk Science, 4(4), 159-168.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [8] Taleb, N. N., & Douady, R. (2013). Mathematical definition, mapping, and detection of (anti) fragility. Quantitative Finance, 13(11), 1677-1689.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [9] Taleb, N. N., & Douady, R. (2011). A map and simple heuristic to detect fragility, antifragility, and model error. NYU-Poly working paper, SSRN.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [10] Taleb, M. N. N., Canetti, M. E., Kinda, M. T., Loukoianova, M. E., & Schmieder, M. C. (2012). A new heuristic measure of fragility and tail risks: application to stress testing. International Monetary Fund.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [11] Omar K. Pineda, Hyobin Kim, and Carlos Gershenson (2019). \'93A Novel Antifragility Measure Based on Satisfaction and Its Application to Random and Biological Boolean Networks,\'94 Complexity, vol. 2019, Article ID 3728621.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [12] Kim, H., Pineda, O. K., & Gershenson, C. (2019). \'93A Multilayer Structure Facilitates the Production of Antifragile Systems in Boolean Network Models\'94. Complexity, vol. 2019, Article ID 2783217..
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [13] Kim, H., Mu\'f1oz, S., Osuna, P., & Gershenson, C. (2020). \'93Antifragility Predicts the Robustness and Evolvability of Biological Networks through Multi-class Classification with a Convolutional Neural Network\'94. arXiv preprint 2002.01571, 2020.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [14] Equihua, M., Espinosa Aldama, M., Gershenson, C., L\'f3pez-Corona, O., Mungu\'eda, M., P\'e9rez-Maqueo, O., and Ram\'edrez-Carrillo, E. (2020). Ecosystem antifragility: beyond integrity and resilience. PeerJ, 8:e8533.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [15] L.Gammaitoni, P. H\'e4nggi, P. Jung, and F. Marchesoni. Stochastic resonance. Reviews of Modern Physics 70 (1) (1998) 223.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [16] Peter H\'e4nggi and Fabio Marchesoni. Artificial Brownian motors: Controlling transport at the nanoscale. Reviews of Modern Physics 81 (1) (2009) 387.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [17] Jos\'e9 L. Mateos and F. R. Alatriste. Brownian motors and stochastic resonance. Chaos 21 (2011) 047503.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [18] S. Kirkpatrick, C. D. Gelatt Jr., and M. P. Vecchi. Optimization by Simulated Annealing. Science 220 (4598) (1983) 671.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [19] K. A. Dowsland and J. Thompson. Simulated Annealing. In, G. Rozenberg, T. Back and J. N. Kok editors. Handbook of Natural Computing. Springer-Verlag, Berlin (2012).
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [20] Arkady Pikovsky, Michael Rosenblum and J\'fcrgen Kurths. Synchronization: a universal concept in nonlinear science. Cambridge University Press (2003).
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [21] Von Foerster, H. (1960). "On self-organizing systems and their environments", pp. 31\'9650 in Self-organizing systems. M.C. Yovits and S. Cameron (eds.), Pergamon Press, London
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [22] Atlan, H. (1974). On a formal definition of organization. Journal of Theoretical Biology, 45(2):295\'96304.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [23] Black, F. Noise. Journal of Finance 41(3), 529-543 (1986).
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [24] A. Mahata, A. Rai, M. Nurujjaman, and O. Prakash, \'93Modeling and analysis of the effect of COVID-19 on the stock price: V and L-shape recovery,\'94 Physica A 574, 126008 (2021). https://doi.org/10.1016/j.physa.2021.126008.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [25] J. Ramezani, L. M. Camarinha-Matos, \'93Approaches for resilience and antifragility in collaborative business ecosystems\'94. Technological Forecasting and Social Change 151, 119846(2020), ISSN 0040-1625.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [26] E. Nikookar, M. Varsei, A. Wieland, \'93Gaining from disorder: Making the case for antifragility in purchasing and supply chain management\'94, Journal of Purchasing and Supply Management 27-3, 100699(2021), ISSN 1478-4092, https://doi.org/10.1016/j.pursup.2021.100699.
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [27] Kahneman, D., Sibony, O., and Sunstein, C. R. Noise: A flaw in human judgment. Little, Brown Spark, New York, USA (2021).
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [28] Sornette, D. Why Stock Markets Crash: Critical events in complex financial systems. Princeton University Press, Princeton, USA (2003).\'a0
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [29] D. Cutler, J. M. Poterba, and L. H. Summers. What moves stock prices? The Journal of Portfolio Management, 15(3), 4-12 (1989).\'a0
\f3\fs24 \cb1 \
\f2\fs26\fsmilli13333 \cb3 [30] X. Gabaix. The Granular Origins of Aggregate Fluctuations. Econometrica 79(3), 733-772 (2011).