-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathbib.bib
6192 lines (5499 loc) · 168 KB
/
bib.bib
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
@article{abbasi2012metafraud,
title={Metafraud: a meta-learning framework for detecting financial fraud},
author={Abbasi, Ahmed and Albrecht, Conan and Vance, Anthony and Hansen, James},
journal={{MIS} Quarterly},
pages={1293--1327},
year={2012}
}
@article{aboussalah2020continuous,
title={Continuous control with Stacked Deep Dynamic Recurrent Reinforcement Learning for portfolio optimization},
author={Aboussalah, Amine Mohamed and Lee, Chi-Guhn},
journal={Expert Systems with Applications},
volume={140},
pages={112891},
year={2020}
}
@article{adler2008cost,
title={The cost of socially responsible investing},
author={Adler, Timothy and Kritzman, Mark},
journal={Journal of Portfolio Management},
volume={35},
number={1},
pages={52--56},
year={2008}
}
@inproceedings{agarwal2006algorithms,
title={Algorithms for portfolio management based on the newton method},
author={Agarwal, Amit and Hazan, Elad and Kale, Satyen and Schapire, Robert E},
booktitle={Proceedings of the 23rd international conference on Machine learning},
pages={9--16},
year={2006},
organization={ACM}
}
@book{aggarwal2013outlier,
title={Outlier analysis},
author={Aggarwal, Charu C},
year={2013},
publisher={Springer}
}
@article{akey2021noisy,
title={Noisy Factors},
author={Akey, Pat and Robertson, Adriana and Simutin, Mikhail},
journal={SSRN Working Paper},
volume={3930228},
year={2021}
}
@article{aldridge2019neural,
title={Neural Networks in Finance: Design and Performance},
author={Aldridge, Irene and Avellaneda, Marco},
journal={Journal of Financial Data Science},
volume={1},
number={4},
pages={39--62},
year={2019}
}
@article{alessandrini2020optimal,
title={Optimal Strategies for {ESG} Portfolios},
author={Alessandrini, Fabio and Jondeau, Eric},
journal={SSRN Working Paper},
volume={3578830},
year={2020}
}
@book{allison2001missing,
title={Missing data},
author={Allison, Paul D},
volume={136},
year={2001},
publisher={Sage publications}
}
@article{almahdi2017adaptive,
title={An adaptive portfolio trading system: A risk-return portfolio optimization using recurrent reinforcement learning with expected maximum drawdown},
author={Almahdi, Saud and Yang, Steve Y},
journal={Expert Systems with Applications},
volume={87},
pages={267--279},
year={2017}
}
@article{almahdi2019constrained,
title={A constrained portfolio trading system using particle swarm algorithm and recurrent reinforcement learning},
author={Almahdi, Saud and Yang, Steve Y},
journal={Expert Systems with Applications},
volume={130},
pages={145--156},
year={2019}
}
@article{alti2019dynamic,
title={A Dynamic Model of Characteristic-Based Return Predictability},
author={Alti, Aydo{\u{g}}an and Titman, Sheridan},
journal={Journal of Finance},
volume={74},
number={6},
pages={3187--3216},
year={2019}
}
@article{ammann2016characteristics,
title={Characteristics-based portfolio choice with leverage constraints},
author={Ammann, Manuel and Coqueret, Guillaume and Schade, Jan-Philip},
journal={Journal of Banking \& Finance},
volume={70},
pages={23--37},
year={2016}
}
@article{amrhein2019scientists,
title={Scientists rise up against statistical significance},
author={Amrhein, Valentin and Greenland, Sander and McShane, Blake},
journal={Nature},
volume={567},
pages={305--307},
year={2019}
}
@book{anderson2000talking,
title={Talking nets: An oral history of neural networks},
author={Anderson, James A and Rosenfeld, Edward},
year={2000},
publisher={MIT Press}
}
@article{andersson2020deep,
title={A deep learning approach for computations of exposure profiles for high-dimensional Bermudan options},
author={Andersson, Kristoffer and Oosterlee, Cornelis},
journal={arXiv Preprint},
number={2003.01977},
year={2020}
}
@article{andre2020dirichlet,
title={Dirichlet policies for reinforced factor portfolios},
author={Andr{\'e}, Eric and Coqueret, Guillaume},
journal={SSRN Working Paper},
volume={3726714},
year={2020}
}
@article{ang2006cross,
title={The cross-section of volatility and expected returns},
author={Ang, Andrew and Hodrick, Robert J and Xing, Yuhang and Zhang, Xiaoyan},
journal={Journal of Finance},
volume={61},
number={1},
pages={259--299},
year={2006}
}
@article{ang2012testing,
title={Testing conditional factor models},
author={Ang, Andrew and Kristensen, Dennis},
journal={Journal of Financial Economics},
volume={106},
number={1},
pages={132--156},
year={2012}
}
@book{ang2014asset,
title={Asset management: A systematic approach to factor investing},
author={Ang, Andrew},
year={2014},
publisher={Oxford University Press}
}
@article{ang2018using,
title={Using individual stocks or portfolios in tests of factor models},
author={Ang, Andrew and Liu, Jun and Schwarz, Krista},
journal={SSRN Working Paper},
volume={1106463},
year={2018}
}
@article{arik2019tabnet,
title={TabNet: Attentive Interpretable Tabular Learning},
author={Arik, Sercan O and Pfister, Tomas},
journal={arXiv Preprint},
number={1908.07442},
year={2020}
}
@article{arjovsky2019invariant,
title={Invariant Risk Minimization},
author={Arjovsky, Martin and Bottou, L{\'e}on and Gulrajani, Ishaan and Lopez-Paz, David},
journal={arXiv Preprint},
number={1907.02893},
year={2019}
}
@article{arnott2014can,
title={Can Noise Create the Size and Value Effects?},
author={Arnott, Robert D and Hsu, Jason C and Liu, Jun and Markowitz, Harry},
journal={Management Science},
volume={61},
number={11},
pages={2569--2579},
year={2014}
}
@article{arnott2019backtesting,
title={A Backtesting Protocol in the Era of Machine Learning},
author={Arnott, Rob and Harvey, Campbell R and Markowitz, Harry},
journal={Journal of Financial Data Science},
volume={1},
number={1},
pages={64--74},
year={2019}
}
@article{arnott2019alice,
title={Alice’s Adventures in Factorland: Three Blunders That Plague Factor Investing},
author={Arnott, Rob and Harvey, Campbell R and Kalesnik, Vitali and Linnainmaa, Juhani},
journal={Journal of Portfolio Management},
volume={45},
number={4},
pages={18--36},
year={2019}
}
@article{arnott2019factor,
title={Factor momentum},
author={Arnott, Robert D and Clements, Mark and Kalesnik, Vitali and Linnainmaa, Juhani T},
journal={SSRN Working Paper},
volume={3116974},
year={2021}
}
@article{aronow2020book,
title={Book Review. {T}he Book of {W}hy: The New Science of Cause and Effect},
author={Aronow, Peter M. and S\"{a}vje, Fredrik},
journal={Journal of the American Statistical Association},
volume={115},
number={529},
year={2019},
pages={482--485}
}
@article{asness2013value,
title={Value and momentum everywhere},
author={Asness, Clifford S and Moskowitz, Tobias J and Pedersen, Lasse Heje},
journal={Journal of Finance},
volume={68},
number={3},
pages={929--985},
year={2013}
}
@article{asness2013devil,
title={The devil in HML’s details},
author={Asness, Clifford and Frazzini, Andrea},
journal={Journal of Portfolio Management},
volume={39},
number={4},
pages={49--68},
year={2013}
}
@article{asness2015investing,
title={Investing with style},
author={Asness, Clifford and Ilmanen, Antti and Israel, Ronen and Moskowitz, Tobias},
journal={Journal of Investment Management},
volume={13},
number={1},
pages={27--63},
year={2015}
}
@article{asness2017contrarian,
title={Contrarian factor timing is deceptively difficult},
author={Asness, Clifford and Chandra, Swati and Ilmanen, Antti and Israel, Ronen},
journal={Journal of Portfolio Management},
volume={43},
number={5},
pages={72--87},
year={2017}
}
@article{asness2018size,
title={Size matters, if you control your junk},
author={Asness, Clifford and Frazzini, Andrea and Israel, Ronen and Moskowitz, Tobias J and Pedersen, Lasse H},
journal={Journal of Financial Economics},
volume={129},
number={3},
pages={479--509},
year={2018}
}
@article{asness2020betting,
title={Betting against correlation: Testing theories of the low-risk effect},
author={Asness, Cliff and Frazzini, Andrea and Gormsen, Niels Joachim and Pedersen, Lasse Heje},
journal={Journal of Financial Economics},
volume={135},
number={3},
pages={629--652},
year={2020}
}
@article{astakhov2019firm,
title={Firm size and stock returns: A quantitative survey},
author={Astakhov, Anton and Havranek, Tomas and Novak, Jiri},
journal={Journal of Economic Surveys},
volume={33},
number={5},
pages={1463--1492},
year={2019}
}
@article{atta2020strategies,
title={Strategies for Responsible Investing: Emerging Academic Evidence},
author={Atta-Darkua, Vaska and Chambers, David and Dimson, Elroy and Ran, Zhenkai and Yu, Ting},
journal={Journal of Portfolio Management},
volume={46},
number={3},
pages={26--35},
year={2020}
}
@article{babiak2020deep,
title={Deep Learning, Predictability, and Optimal Portfolio Returns},
author={Babiak, Mykola and Barunik, Jozef},
journal={arXiv Preprint},
number={2009.03394},
year={2020}
}
@article{bache2014magrittr,
title={magrittr: a forward-pipe operator for R},
author={Bache, Stefan Milton and Wickham, Hadley},
journal={R package version},
volume={1},
number={1},
year={2014}
}
@book{back2010asset,
title={Asset pricing and portfolio choice theory},
author={Back, Kerry},
year={2010},
publisher={Oxford University Press}
}
@book{baesens2015fraud,
title={Fraud analytics using descriptive, predictive, and social network techniques: a guide to data science for fraud detection},
author={Baesens, Bart and Van Vlasselaer, Veronique and Verbeke, Wouter},
year={2015},
publisher={John Wiley \& Sons}
}
@article{bai2002determining,
title={Determining the number of factors in approximate factor models},
author={Bai, Jushan and Ng, Serena},
journal={Econometrica},
volume={70},
number={1},
pages={191--221},
year={2002}
}
@article{bailey1978note,
title={A note on distance-weighted k-nearest neighbor rules},
author={Bailey, T and Jain, A.K.},
journal={IEEE Trans. on Systems, Man, Cybernetics},
volume={8},
number={4},
pages={311--313},
year={1978}
}
@article{bailey2014deflated,
title={The deflated Sharpe ratio: correcting for selection bias, backtest overfitting, and non-normality},
author={Bailey, David H and de Prado, Marcos L{\'o}pez},
journal={Journal of Portfolio Management},
volume={40},
number={5},
pages={94--107},
pages={39--59},
year={2014}
}
@article{bailey2017probability,
title={The probability of backtest overfitting},
author={Bailey, David H and Borwein, Jonathan and Lopez de Prado, Marcos and Zhu, Qiji Jim},
journal={Journal of Computational Finance},
volume = {20},
number={4},
year={2017}
}
@article{bailey2021finance,
title={Finance is Not Excused: {W}hy Finance Should Not Flout Basic Principles of Statistics},
author={Bailey, David H and Lopez de Prado, Marcos},
journal={Significance (Royal Statistical Society)},
volume={Forthcoming},
year={2021}
}
@article{lopez2020false,
title={The False Strategy Theorem: {A} Financial Application of Experimental Mathematics},
author={Lopez de Prado, Marcos and Bailey, David H},
journal={American Mathematical Monthly},
volume={Forthcoming},
year={2020}
}
@article{bajgrowicz2012technical,
title={Technical trading revisited: {F}alse discoveries, persistence tests, and transaction costs},
author={Bajgrowicz, Pierre and Scaillet, Olivier},
journal={Journal of Financial Economics},
volume={106},
number={3},
pages={473--491},
year={2012}
}
@article{baker2011benchmarks,
title={Benchmarks as limits to arbitrage: Understanding the low-volatility anomaly},
author={Baker, Malcolm and Bradley, Brendan and Wurgler, Jeffrey},
journal={Financial Analysts Journal},
volume={67},
number={1},
pages={40--54},
year={2011}
}
@article{baker2017detecting,
title={Detecting Anomalies: The Relevance and Power of Standard Asset Pricing Tests},
author={Baker, Malcolm and Luo, Patrick and Taliaferro, Ryan},
year={2017}
}
@article{baker2019leverage,
title={Leverage and the beta anomaly},
author={Baker, Malcolm and Hoeyer, Mathias F and Wurgler, Jeffrey},
journal={Journal of Financial and Quantitative Analysis},
volume={Forthcoming},
pages={1--24},
year={2020}
}
@book{bali2016empirical,
title={Empirical asset pricing: the cross section of stock returns},
author={Bali, Turan G and Engle, Robert F and Murray, Scott},
year={2016},
publisher={John Wiley \& Sons}
}
@article{bali2020cross,
title={Different Strokes: {R}eturn Predictability Across Stocks and Bonds with Machine Learning and Big Data},
author={Bali, Turan G and Goyal, Amit and Huang, Dashan and Jiang, Fuwei and Wen, Quan},
journal={SSRN Working Paper},
volume={3686164},
year={2020}
}
@article{ballings2015evaluating,
title={Evaluating multiple classifiers for stock price direction prediction},
author={Ballings, Michel and Van den Poel, Dirk and Hespeels, Nathalie and Gryp, Ruben},
journal={Expert Systems with Applications},
volume={42},
number={20},
pages={7046--7056},
year={2015}
}
@article{ban2016machine,
title={Machine learning and portfolio optimization},
author={Ban, Gah-Yi and El Karoui, Noureddine and Lim, Andrew EB},
journal={Management Science},
volume={64},
number={3},
pages={1136--1154},
year={2016}
}
@article{bansal1993no,
title={No arbitrage and arbitrage pricing: A new approach},
author={Bansal, Ravi and Viswanathan, Salim},
journal={Journal of Finance},
volume={48},
number={4},
pages={1231--1262},
year={1993}
}
@article{bansal1993new,
title={A new approach to international arbitrage pricing},
author={Bansal, Ravi and Hsieh, David A and Viswanathan, S},
journal={Journal of Finance},
volume={48},
number={5},
pages={1719--1747},
year={1993}
}
@article{banz1981relationship,
title={The relationship between return and market value of common stocks},
author={Banz, Rolf W},
journal={Journal of Financial Economics},
volume={9},
number={1},
pages={3--18},
year={1981}
}
@article{barberis2003style,
title={Style investing},
author={Barberis, Nicholas and Shleifer, Andrei},
journal={Journal of Financial Economics},
volume={68},
number={2},
pages={161--199},
year={2003}
}
@article{barberis2015x,
title={{X}-{CAPM}: An extrapolative capital asset pricing model},
author={Barberis, Nicholas and Greenwood, Robin and Jin, Lawrence and Shleifer, Andrei},
journal={Journal of Financial Economics},
volume={115},
number={1},
pages={1--24},
year={2015}
}
@article{barberis2016prospect,
title={Prospect theory and stock returns: An empirical test},
author={Barberis, Nicholas and Mukherjee, Abhiroop and Wang, Baolian},
journal={Review of Financial Studies},
volume={29},
number={11},
pages={3068--3107},
year={2016}
}
@incollection{barberis2018psychology,
title={Psychology-Based Models of Asset Prices and Trading Volume},
author={Barberis, Nicholas},
booktitle={Handbook of Behavioral Economics-Foundations and Applications },
year={2018}
}
@article{barberis2019prospect,
title={Prospect Theory and Stock Market Anomalies},
author={Barberis, Nicholas and Jin, Lawrence J and Wang, Baolian},
journal={SSRN Working Paper},
volume={3477463},
year={2020}
}
@article{barillas2018comparing,
title={Comparing asset pricing models},
author={Barillas, Francisco and Shanken, Jay},
journal={Journal of Finance},
volume={73},
number={2},
pages={715--754},
year={2018}
}
@article{barron1993universal,
title={Universal approximation bounds for superpositions of a sigmoidal function},
author={Barron, Andrew R},
journal={IEEE Transactions on Information Theory},
volume={39},
number={3},
pages={930--945},
year={1993}
}
@article{barron1994approximation,
title={Approximation and estimation bounds for artificial neural networks},
author={Barron, Andrew R},
journal={Machine Learning},
volume={14},
number={1},
pages={115--133},
year={1994}
}
@article{barroso2015momentum,
title={Momentum has its moments},
author={Barroso, Pedro and Santa-Clara, Pedro},
journal={Journal of Financial Economics},
volume={116},
number={1},
pages={111--120},
year={2015}
}
@article{basak2004online,
title={Online adaptive decision trees},
author={Basak, Jayanta},
journal={Neural Computation},
volume={16},
number={9},
pages={1959--1981},
year={2004}
}
@article{bates1969combination,
title={The combination of forecasts},
author={Bates, John M and Granger, Clive WJ},
journal={Journal of the Operational Research Society},
volume={20},
number={4},
pages={451--468},
year={1969}
}
@article{bauder2020bayesian,
title={Bayesian inference of the multi-period optimal portfolio for an exponential utility},
author={Bauder, David and Bodnar, Taras and Parolya, Nestor and Schmid, Wolfgang},
journal={Journal of Multivariate Analysis},
volume={175},
pages={104544},
year={2020}
}
@article{baz2015dissecting,
title={Dissecting investment strategies in the cross section and time series},
author={Baz, Jamil and Granger, Nicolas and Harvey, Campbell R and Le Roux, Nicolas and Rattray, Sandy},
journal={SSRN Working Paper},
volume={2695101},
year={2015}
}
@inproceedings{beery2018recognition,
title={Recognition in terra incognita},
author={Beery, Sara and Van Horn, Grant and Perona, Pietro},
booktitle={Proceedings of the European Conference on Computer Vision (ECCV)},
pages={456--473},
year={2018}
}
@article{belle2020principles,
title={Principles and Practice of Explainable Machine Learning},
author={Belle, Vaishak and Papantonis, Ioannis},
journal={arXiv Preprint},
number={2009.11698},
year={2020}
}
@article{bellone2020equity,
title={Equity Factor Investing: Historical Perspective of Recent Performance},
author={Bellone, Benoit and Heckel, Thomas and Soup{\'e}, Fran{\c{c}}ois and Carvalho, Raul Leote de},
journal={SSRN Working Paper},
volume={3732113},
year={2020}
}
@book{belsley2005regression,
title={Regression diagnostics: Identifying influential data and sources of collinearity},
author={Belsley, David A and Kuh, Edwin and Welsch, Roy E},
volume={571},
year={2005},
publisher={John Wiley \& Sons}
}
@article{ben2010theory,
title={A theory of learning from different domains},
author={Ben-David, Shai and Blitzer, John and Crammer, Koby and Kulesza, Alex and Pereira, Fernando and Vaughan, Jennifer Wortman},
journal={Machine Learning},
volume={79},
number={1-2},
pages={151--175},
year={2010}
}
@article{benard2021sirus,
title={Sirus: {S}table and interpretable rule set for classification},
author={B{\'e}nard, Cl{\'e}ment and Biau, G{\'e}rard and Da Veiga, S{\'e}bastien and Scornet, Erwan},
journal={Electronic Journal of Statistics},
volume={15},
number={1},
pages={427--505},
year={2021}
}
@incollection{bengio2012practical,
title={Practical recommendations for gradient-based training of deep architectures},
author={Bengio, Yoshua},
booktitle={Neural networks: Tricks of the trade},
pages={437--478},
year={2012},
publisher={Springer}
}
@article{berg2019aggregate,
title={Aggregate Confusion: The Divergence of {ESG} Ratings},
author={Berg, Florian and Koelbel, Julian F and Rigobon, Roberto},
year={2020},
journal={SSRN Working Paper},
volume={3438533}
}
@article{bergstra2012random,
title={Random search for hyper-parameter optimization},
author={Bergstra, James and Bengio, Yoshua},
journal={Journal of Machine Learning Research},
volume={13},
number={Feb},
pages={281--305},
year={2012}
}
@article{berk1999optimal,
title={Optimal investment, growth options, and security returns},
author={Berk, Jonathan B and Green, Richard C and Naik, Vasant},
journal={Journal of Finance},
volume={54},
number={5},
pages={1553--1607},
year={1999}
}
@article{bernstein2019disaster,
title={Disaster on the horizon: The price effect of sea level rise},
author={Bernstein, Asaf and Gustafson, Matthew T and Lewis, Ryan},
journal={Journal of Financial Economics},
volume={134},
number={2},
pages={253--272},
year={2019}
}
@article{bertoluzzo2012testing,
title={Testing different Reinforcement Learning configurations for financial trading: Introduction and applications},
author={Bertoluzzo, Francesco and Corazza, Marco},
journal={Procedia Economics and Finance},
volume={3},
pages={68--77},
year={2012}
}
@book{bertsekas2017dynamic,
title={Dynamic programming and optimal control - Volume II, Fourth Edition},
author={Bertsekas, Dimitri P },
year={2017},
publisher={Athena Scientific}
}
@article{bertsimas2017optimal,
title={Optimal classification trees},
author={Bertsimas, Dimitris and Dunn, Jack},
journal={Machine Learning},
volume={106},
number={7},
pages={1039--1082},
year={2017}
}
@article{betermier2017value,
title={Who are the value and growth investors?},
author={Betermier, Sebastien and Calvet, Laurent E and Sodini, Paolo},
journal={Journal of Finance},
volume={72},
number={1},
pages={5--46},
year={2017}
}
@article{betermier2019supply,
title={A Supply and Demand Approach to Equity Pricing},
author={Betermier, Sebastien and Calvet, Laurent E and Jo, Evan},
journal={SSRN Working Paper },
volume={3440147},
year={2019}
}
@book{biecek2021explanatory,
title={Explanatory model analysis: explore, explain, and examine predictive models},
author={Biecek, Przemyslaw and Burzykowski, Tomasz},
year={2021},
publisher={CRC Press}
}
@article{bhamra2019does,
title={Does household finance matter? Small financial errors with large social costs},
author={Bhamra, Harjoat S and Uppal, Raman},
journal={American Economic Review},
volume={109},
number={3},
pages={1116--54},
year={2019}
}
@article{bhatia2010survey,
title={Survey of nearest neighbor techniques},
author={Bhatia, Nitin and others},
journal={arXiv Preprint},
number={1007.0085},
year={2010}
}
@article{bhattacharyya2011data,
title={Data mining for credit card fraud: A comparative study},
author={Bhattacharyya, Siddhartha and Jha, Sanjeev and Tharakunnel, Kurian and Westland, J Christopher},
journal={Decision Support Systems},
volume={50},
number={3},
pages={602--613},
year={2011}
}
@article{biau2008consistency,
title={Consistency of random forests and other averaging classifiers},
author={Biau, G\'erard and Devroye, Luc and Lugosi, GAbor},
journal={Journal of Machine Learning Research},
volume={9},
number={Sep},
pages={2015--2033},
year={2008}
}
@article{biau2012analysis,
title={Analysis of a random forests model},
author={Biau, G\'erard},
journal={Journal of Machine Learning Research},
volume={13},
number={Apr},
pages={1063--1095},
year={2012}
}
@article{binz2020can,
title={What Can Analysts Learn from Artificial Intelligence about Fundamental Analysis?},
author={Binz, Oliver and Schipper, Katherine and Standridge, Kevin},
journal={SSRN Working Paper},
volume={3745078},
year={2020}
}
@article{black1992global,
title={Global portfolio optimization},
author={Black, Fischer and Litterman, Robert},
journal={Financial Analysts Journal},
volume={48},
number={5},
pages={28--43},
year={1992}
}
@article{blank2019using,
title={Using Alternative Research Data in Real-World Portfolios},
author={Blank, Herbert and Davis, Richard and Greene, Shannon},
journal={Journal of Investing},
volume={28},
number={4},
pages={95--103},
year={2019}
}
@article{blitz2020exclusion,
title={Is Exclusion Effective?},
author={Blitz, David and Swinkels, Laurens},
journal={Journal of Portfolio Management},
volume={46},
number={3},
pages={42--48},
year={2020}
}
@article{blum1999universal,
title={Universal portfolios with and without transaction costs},
author={Blum, Avrim and Kalai, Adam},
journal={Machine Learning},
volume={35},
number={3},
pages={193--205},
year={1999}
}
@article{bodnar2013equivalence,
title={On the equivalence of quadratic optimization problems commonly used in portfolio theory},
author={Bodnar, Taras and Parolya, Nestor and Schmid, Wolfgang},
journal={European Journal of Operational Research},
volume={229},
number={3},
pages={637--644},
year={2013}
}
@book{boehmke2019hands,
title={Hands-on Machine Learning with R},
author={Boehmke, Brad and Greenwell, Brandon},
year={2019},
publisher={Chapman \& Hall / CRC}
}
@article{boloorforoosh2019beta,
title={Beta Risk in the Cross-section of Equities},
author={Boloorforoosh, Ali and Christoffersen, Peter and Gourieroux, Christian and Fournier, Mathieu},
journal={Review of Financial Studies},
volume={Forthcoming},
year={2020}
}
@article{bonaccolto2019developing,
title={Developing new portfolio strategies by aggregation},
author={Bonaccolto, Giovanni and Paterlini, Sandra},
journal={Annals of Operations Research},
pages={1--39},
year={2019}
}
@inproceedings{boriah2008similarity,
title={Similarity measures for categorical data: A comparative evaluation},
author={Boriah, Shyam and Chandola, Varun and Kumar, Vipin},
booktitle={Proceedings of the 2008 SIAM international conference on data mining},
pages={243--254},
year={2008}
}
@article{borisov2021deep,
title={Deep Neural Networks and Tabular Data: {A} Survey},
author={Borisov, Vadim and Leemann, Tobias and Se{\ss}ler, Kathrin and Haug, Johannes and Pawelczyk, Martin and Kasneci, Gjergji},
journal={arXiv Preprint},
number={2110.01889},
year={2021}
}
@inproceedings{boser1992training,
title={A training algorithm for optimal margin classifiers},
author={Boser, Bernhard E and Guyon, Isabelle M and Vapnik, Vladimir N},
booktitle={Proceedings of the fifth annual workshop on Computational learning theory},
pages={144--152},
year={1992},
organization={ACM}
}
@article{bouchaud2019sticky,
title={Sticky expectations and the profitability anomaly},
author={Bouchaud, Jean-philippe and Krueger, Philipp and Landier, Augustin and Thesmar, David},
journal={Journal of Finance},
volume={74},
number={2},
pages={639--674},
year={2019}
}
@techreport{bouthillier2020survey,
title = {Survey of machine-learning experimental methods at NeurIPS2019 and ICLR2020},
author = {Bouthillier, Xavier and Varoquaux, Ga{\"e}l},
type = {Research Report},
institution = {Inria Saclay Ile de France},
year = {2020},
hal_id = {hal-02447823},
hal_version = {v1},
}
@book{boyd2004convex,
title={Convex optimization},
author={Boyd, Stephen and Vandenberghe, Lieven},
year={2004},
publisher={Cambridge University Press}
}
@article{branch2012socially,
title={Do Socially Responsible Index Investors Incur an Opportunity Cost?},
author={Branch, Ben and Cai, Li},
journal={Financial Review},
volume={47},
number={3},
pages={617--630},
year={2012}
}
@article{brandt2009parametric,
title={Parametric portfolio policies: Exploiting characteristics in the cross-section of equity returns},
author={Brandt, Michael W and Santa-Clara, Pedro and Valkanov, Rossen},
journal={Review of Financial Studies},
volume={22},
number={9},
pages={3411--3447},
year={2009}
}
@article{braun1987predicting,
title={Predicting stock market behavior through rule induction: an application of the learning-from-example approach},
author={Braun, Helmut and Chandler, John S},
journal={Decision Sciences},
volume={18},
number={3},
pages={415--429},
year={1987}
}
@book{breiman1984classification,
title={Classification And Regression Trees},
author={Breiman, Leo and Friedman, Jerome and Stone, Charles J. and Olshen, R.A. },
year={1984},
publisher={Chapman \& Hall}