Files
quantconnect--lean/Algorithm.CSharp/FreePortfolioValueRegressionAlgorithm.cs
2020-04-06 10:32:59 -03:00

125 lines
5.2 KiB
C#

/*
* 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 QuantConnect.Algorithm.Framework.Alphas;
using QuantConnect.Algorithm.Framework.Execution;
using QuantConnect.Algorithm.Framework.Portfolio;
using QuantConnect.Algorithm.Framework.Selection;
using QuantConnect.Orders;
using QuantConnect.Interfaces;
namespace QuantConnect.Algorithm.CSharp
{
/// <summary>
/// Regression algorithm which reproduced GH issue 3759 (performing 26 trades).
/// </summary>
public class FreePortfolioValueRegressionAlgorithm : QCAlgorithm, IRegressionAlgorithmDefinition
{
/// <summary>
/// Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized.
/// </summary>
public override void Initialize()
{
UniverseSettings.Resolution = Resolution.Daily;
SetStartDate(2007, 10, 1);
SetEndDate(2018, 2, 1);
SetCash(1000000);
UniverseSettings.Leverage = 1;
SetUniverseSelection(
new ManualUniverseSelectionModel(QuantConnect.Symbol.Create("SPY", SecurityType.Equity, Market.USA))
);
SetAlpha(
new ConstantAlphaModel(InsightType.Price, InsightDirection.Up, QuantConnect.Time.OneDay, 0.025, null)
);
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel());
SetExecution(new ImmediateExecutionModel());
}
public override void OnEndOfAlgorithm()
{
if (Settings.FreePortfolioValue != 1000000 * Settings.FreePortfolioValuePercentage)
{
throw new Exception($"Unexpected FreePortfolioValue value: {Settings.FreePortfolioValue}");
}
}
public override void OnOrderEvent(OrderEvent orderEvent)
{
Debug($"OnOrderEvent: {orderEvent}");
}
/// <summary>
/// This is used by the regression test system to indicate if the open source Lean repository has the required data to run this algorithm.
/// </summary>
public bool CanRunLocally { get; } = true;
/// <summary>
/// This is used by the regression test system to indicate which languages this algorithm is written in.
/// </summary>
public Language[] Languages { get; } = { Language.CSharp };
/// <summary>
/// This is used by the regression test system to indicate what the expected statistics are from running the algorithm
/// </summary>
public Dictionary<string, string> ExpectedStatistics => new Dictionary<string, string>
{
{"Total Trades", "2"},
{"Average Win", "0%"},
{"Average Loss", "0.00%"},
{"Compounding Annual Return", "8.172%"},
{"Drawdown", "55.100%"},
{"Expectancy", "-1"},
{"Net Profit", "125.433%"},
{"Sharpe Ratio", "0.468"},
{"Probabilistic Sharpe Ratio", "2.573%"},
{"Loss Rate", "100%"},
{"Win Rate", "0%"},
{"Profit-Loss Ratio", "0"},
{"Alpha", "0.093"},
{"Beta", "-0.1"},
{"Annual Standard Deviation", "0.18"},
{"Annual Variance", "0.032"},
{"Information Ratio", "-0.001"},
{"Tracking Error", "0.267"},
{"Treynor Ratio", "-0.846"},
{"Total Fees", "$41.17"},
{"Fitness Score", "0"},
{"Kelly Criterion Estimate", "38.884"},
{"Kelly Criterion Probability Value", "0.009"},
{"Sortino Ratio", "0.501"},
{"Return Over Maximum Drawdown", "0.148"},
{"Portfolio Turnover", "0"},
{"Total Insights Generated", "2604"},
{"Total Insights Closed", "2603"},
{"Total Insights Analysis Completed", "2603"},
{"Long Insight Count", "2604"},
{"Short Insight Count", "0"},
{"Long/Short Ratio", "100%"},
{"Estimated Monthly Alpha Value", "$1176372.2118"},
{"Total Accumulated Estimated Alpha Value", "$148113430.7231"},
{"Mean Population Estimated Insight Value", "$56901.0491"},
{"Mean Population Direction", "43.2962%"},
{"Mean Population Magnitude", "43.2962%"},
{"Rolling Averaged Population Direction", "48.763%"},
{"Rolling Averaged Population Magnitude", "48.763%"},
{"OrderListHash", "-1756838669"}
};
}
}