In the notebook "Contest Criteria Check" that is suggested as a framework for evaluating backtest results for compliance with contest rules, I think there there is a typo.
if (leverage_100 > LEVERAGE_100TH_MAX):
print 'FAIL: Maximum leverage of %.2fx is above %.1fx' % (
leverage_0,
LEVERAGE_0TH_MAX
)
I think should actually reference the 100th max.
if (leverage_100 > LEVERAGE_100TH_MAX):
print 'FAIL: Maximum leverage of %.2fx is above %.1fx' % (
leverage_100,
LEVERAGE_100TH_MAX
)
Could someone please confirm this is true?