Skip to content

Commit 55b7824

Browse files
committed
Regression algorithm stats update
1 parent fa6426b commit 55b7824

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

Algorithm.CSharp/RawPricesUniverseRegressionAlgorithm.cs

+26-26
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ public override void OnSecuritiesChanged(SecurityChanges changes)
9191
/// <summary>
9292
/// Data Points count of all timeslices of algorithm
9393
/// </summary>
94-
public long DataPoints => 135;
94+
public long DataPoints => 144;
9595

9696
/// <summary>
9797
/// Data Points count of the algorithm history
9898
/// </summary>
99-
public int AlgorithmHistoryDataPoints => 30;
99+
public int AlgorithmHistoryDataPoints => 90;
100100

101101
/// <summary>
102102
/// Final status of the algorithm
@@ -108,33 +108,33 @@ public override void OnSecuritiesChanged(SecurityChanges changes)
108108
/// </summary>
109109
public Dictionary<string, string> ExpectedStatistics => new Dictionary<string, string>
110110
{
111-
{"Total Orders", "12"},
112-
{"Average Win", "0.34%"},
113-
{"Average Loss", "-0.14%"},
114-
{"Compounding Annual Return", "4.586%"},
115-
{"Drawdown", "0.700%"},
116-
{"Expectancy", "0.158"},
111+
{"Total Orders", "33"},
112+
{"Average Win", "0.22%"},
113+
{"Average Loss", "-0.31%"},
114+
{"Compounding Annual Return", "-25.889%"},
115+
{"Drawdown", "2.200%"},
116+
{"Expectancy", "-0.199"},
117117
{"Start Equity", "50000"},
118-
{"End Equity", "50090.17"},
119-
{"Net Profit", "0.180%"},
120-
{"Sharpe Ratio", "5.991"},
121-
{"Sortino Ratio", "0"},
122-
{"Probabilistic Sharpe Ratio", "99.393%"},
123-
{"Loss Rate", "67%"},
124-
{"Win Rate", "33%"},
125-
{"Profit-Loss Ratio", "2.47"},
126-
{"Alpha", "0.17"},
127-
{"Beta", "0.029"},
128-
{"Annual Standard Deviation", "0.028"},
129-
{"Annual Variance", "0.001"},
130-
{"Information Ratio", "2.734"},
131-
{"Tracking Error", "0.098"},
132-
{"Treynor Ratio", "5.803"},
118+
{"End Equity", "49401.67"},
119+
{"Net Profit", "-1.197%"},
120+
{"Sharpe Ratio", "-1.036"},
121+
{"Sortino Ratio", "-0.681"},
122+
{"Probabilistic Sharpe Ratio", "31.423%"},
123+
{"Loss Rate", "53%"},
124+
{"Win Rate", "47%"},
125+
{"Profit-Loss Ratio", "0.72"},
126+
{"Alpha", "-0.02"},
127+
{"Beta", "0.682"},
128+
{"Annual Standard Deviation", "0.086"},
129+
{"Annual Variance", "0.007"},
130+
{"Information Ratio", "0.195"},
131+
{"Tracking Error", "0.063"},
132+
{"Treynor Ratio", "-0.131"},
133133
{"Total Fees", "$0.00"},
134-
{"Estimated Strategy Capacity", "$99000000.00"},
134+
{"Estimated Strategy Capacity", "$220000000.00"},
135135
{"Lowest Capacity Asset", "AIG R735QTJ8XC9X"},
136-
{"Portfolio Turnover", "15.96%"},
137-
{"OrderListHash", "d915ae36ce856457b32ebbfce4581281"}
136+
{"Portfolio Turnover", "44.69%"},
137+
{"OrderListHash", "93b3a1c9d6234bf616f0a69a5129a781"}
138138
};
139139
}
140140
}

0 commit comments

Comments
 (0)