/*
* 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
{
///
/// Regression algorithm which reproduced GH issue 3759 (performing 26 trades).
///
public class FreePortfolioValueRegressionAlgorithm : QCAlgorithm, IRegressionAlgorithmDefinition
{
///
/// Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized.
///
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}");
}
///
/// This is used by the regression test system to indicate if the open source Lean repository has the required data to run this algorithm.
///
public bool CanRunLocally { get; } = true;
///
/// This is used by the regression test system to indicate which languages this algorithm is written in.
///
public Language[] Languages { get; } = { Language.CSharp };
///
/// Data Points count of all timeslices of algorithm
///
public long DataPoints => 20812;
///
/// Data Points count of the algorithm history
///
public int AlgorithmHistoryDataPoints => 0;
///
/// This is used by the regression test system to indicate what the expected statistics are from running the algorithm
///
public Dictionary ExpectedStatistics => new Dictionary
{
{"Total Trades", "2"},
{"Average Win", "0%"},
{"Average Loss", "0.00%"},
{"Compounding Annual Return", "8.171%"},
{"Drawdown", "55.000%"},
{"Expectancy", "-1"},
{"Net Profit", "125.420%"},
{"Sharpe Ratio", "0.427"},
{"Probabilistic Sharpe Ratio", "1.166%"},
{"Loss Rate", "100%"},
{"Win Rate", "0%"},
{"Profit-Loss Ratio", "0"},
{"Alpha", "-0"},
{"Beta", "0.997"},
{"Annual Standard Deviation", "0.164"},
{"Annual Variance", "0.027"},
{"Information Ratio", "-0.213"},
{"Tracking Error", "0.001"},
{"Treynor Ratio", "0.07"},
{"Total Fees", "$43.46"},
{"Estimated Strategy Capacity", "$430000000.00"},
{"Lowest Capacity Asset", "SPY R735QTJ8XC9X"},
{"Fitness Score", "0"},
{"Kelly Criterion Estimate", "37.332"},
{"Kelly Criterion Probability Value", "0.01"},
{"Sortino Ratio", "0.505"},
{"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", "$1220785.7706"},
{"Total Accumulated Estimated Alpha Value", "$153705406.1995"},
{"Mean Population Estimated Insight Value", "$59049.3301"},
{"Mean Population Direction", "43.4499%"},
{"Mean Population Magnitude", "43.4499%"},
{"Rolling Averaged Population Direction", "48.5717%"},
{"Rolling Averaged Population Magnitude", "48.5717%"},
{"OrderListHash", "3aa1d64da57ef9841bef4aa8b0292521"}
};
}
}