forked from QuantConnect/Lean
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRsiAlphaModelFrameworkRegressionAlgorithm.cs
88 lines (81 loc) · 3.43 KB
/
RsiAlphaModelFrameworkRegressionAlgorithm.cs
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
/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using QuantConnect.Algorithm.Framework.Alphas;
namespace QuantConnect.Algorithm.CSharp
{
/// <summary>
/// Regression algorithm to assert the behavior of <see cref="RsiAlphaModel"/>.
/// </summary>
public class RsiAlphaModelFrameworkRegressionAlgorithm : BaseFrameworkRegressionAlgorithm
{
public override void Initialize()
{
base.Initialize();
SetAlpha(new RsiAlphaModel());
}
public override void OnEndOfAlgorithm()
{
// We have removed all securities from the universe. The Alpha Model should remove the consolidator
var consolidatorCount = SubscriptionManager.Subscriptions.Sum(s => s.Consolidators.Count);
// Expect 2 consolidators for AAPL and AIG, which where manually added at the start
if (consolidatorCount != 2)
{
throw new RegressionTestException($"The number of consolidators should be 2. Actual: {consolidatorCount}");
}
}
public override long DataPoints => 772;
public override int AlgorithmHistoryDataPoints => 56;
/// <summary>
/// Final status of the algorithm
/// </summary>
public AlgorithmStatus AlgorithmStatus => AlgorithmStatus.Completed;
/// <summary>
/// This is used by the regression test system to indicate what the expected statistics are from running the algorithm
/// </summary>
public override Dictionary<string, string> ExpectedStatistics => new()
{
{"Total Orders", "28"},
{"Average Win", "0.14%"},
{"Average Loss", "-0.08%"},
{"Compounding Annual Return", "0.234%"},
{"Drawdown", "1.900%"},
{"Expectancy", "0.186"},
{"Start Equity", "100000"},
{"End Equity", "100019.20"},
{"Net Profit", "0.019%"},
{"Sharpe Ratio", "-0.1"},
{"Sortino Ratio", "-0.126"},
{"Probabilistic Sharpe Ratio", "37.678%"},
{"Loss Rate", "57%"},
{"Win Rate", "43%"},
{"Profit-Loss Ratio", "1.77"},
{"Alpha", "0.059"},
{"Beta", "-0.335"},
{"Annual Standard Deviation", "0.048"},
{"Annual Variance", "0.002"},
{"Information Ratio", "-2.498"},
{"Tracking Error", "0.078"},
{"Treynor Ratio", "0.014"},
{"Total Fees", "$62.12"},
{"Estimated Strategy Capacity", "$30000000.00"},
{"Lowest Capacity Asset", "NB R735QTJ8XC9X"},
{"Portfolio Turnover", "14.67%"},
{"OrderListHash", "3b73135c5883e22b5a0d3902699cc732"}
};
}
}