File size: 515 Bytes
3339913
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Statistical tests that ask "is this edge real, or did we just get lucky?"."""

from .deflated_sharpe import deflated_sharpe_ratio, min_track_record_length, probabilistic_sharpe_ratio
from .pbo import probability_of_backtest_overfitting
from .permutation import permutation_test
from .walkforward import walk_forward

__all__ = [
    "deflated_sharpe_ratio",
    "probabilistic_sharpe_ratio",
    "min_track_record_length",
    "probability_of_backtest_overfitting",
    "permutation_test",
    "walk_forward",
]