8c6aa6a3b3
* Adds CapacityEstimate and SymbolCapacity
The capacity estimation has been moved from
the report generator and wired directly into
Lean via the ResultHandler. In addition,
the capacity estimation strategy has changed
to account for errors in the previous iteration
of the capacity estimation.
Many many thanks to Jared for being much of the
mastermind behind this project. It would have
been harder to complete without him to bounce ideas
off of.
* Moves old tests to regression algorithms
* Adds Estimated Capacity statistic
* Removes old capacity estimation tests
Final report capacity estimation. Pushing to save state
* Fixes bugs, cleans up code and adds comments
* Adds forced sampling to Capacity Estimation
* Misc. bug fixes for daily data
* Updates capacity test cases' Estimated Strategy Capacity statistic
* Adds Capacity Estimate to all regression algorithms
* Removes Report's StrategyCapacity class and fixes bug in tests
* Adds null check in BacktestingResultHandler to fix
BacktestingTransactionHandler failing tests
* Deletes old capacity estimation classes
* Retrieve capacity estimates from backtest statistics results
instead of calculating at runtime
* Make $0.00 capacity return as "-" and Result = 0 in report
* Adds capacity to runtime statistics
* Converts capacity to number denoted by financial figures in RuntimeStats
* Addresses review: code cleanup for Capacity and adds comments to regression tests
212 lines
7.9 KiB
C#
212 lines
7.9 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 System.Linq;
|
|
using QuantConnect.Data;
|
|
using QuantConnect.Data.Market;
|
|
using QuantConnect.Interfaces;
|
|
using QuantConnect.Securities;
|
|
|
|
namespace QuantConnect.Algorithm.CSharp
|
|
{
|
|
/// <summary>
|
|
/// This regression algorithm tests that we receive the expected data when
|
|
/// we add future option contracts individually using <see cref="AddFutureOptionContract"/>
|
|
/// </summary>
|
|
public class AddFutureOptionContractDataStreamingRegressionAlgorithm : QCAlgorithm, IRegressionAlgorithmDefinition
|
|
{
|
|
private bool _onDataReached;
|
|
private bool _invested;
|
|
private Symbol _es20h20;
|
|
private Symbol _es19m20;
|
|
|
|
private readonly HashSet<Symbol> _symbolsReceived = new HashSet<Symbol>();
|
|
private readonly HashSet<Symbol> _expectedSymbolsReceived = new HashSet<Symbol>();
|
|
private readonly Dictionary<Symbol, List<QuoteBar>> _dataReceived = new Dictionary<Symbol, List<QuoteBar>>();
|
|
|
|
public override void Initialize()
|
|
{
|
|
SetStartDate(2020, 1, 5);
|
|
SetEndDate(2020, 1, 6);
|
|
|
|
_es20h20 = AddFutureContract(
|
|
QuantConnect.Symbol.CreateFuture(Futures.Indices.SP500EMini, Market.CME, new DateTime(2020, 3, 20)),
|
|
Resolution.Minute).Symbol;
|
|
|
|
_es19m20 = AddFutureContract(
|
|
QuantConnect.Symbol.CreateFuture(Futures.Indices.SP500EMini, Market.CME, new DateTime(2020, 6, 19)),
|
|
Resolution.Minute).Symbol;
|
|
|
|
var optionChains = OptionChainProvider.GetOptionContractList(_es20h20, Time)
|
|
.Concat(OptionChainProvider.GetOptionContractList(_es19m20, Time));
|
|
|
|
foreach (var optionContract in optionChains)
|
|
{
|
|
_expectedSymbolsReceived.Add(AddFutureOptionContract(optionContract, Resolution.Minute).Symbol);
|
|
}
|
|
|
|
if (_expectedSymbolsReceived.Count == 0)
|
|
{
|
|
throw new InvalidOperationException("Expected Symbols receive count is 0, expected >0");
|
|
}
|
|
}
|
|
|
|
public override void OnData(Slice data)
|
|
{
|
|
if (!data.HasData)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_onDataReached = true;
|
|
|
|
var hasOptionQuoteBars = false;
|
|
foreach (var qb in data.QuoteBars.Values)
|
|
{
|
|
if (qb.Symbol.SecurityType != SecurityType.FutureOption)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
hasOptionQuoteBars = true;
|
|
|
|
_symbolsReceived.Add(qb.Symbol);
|
|
if (!_dataReceived.ContainsKey(qb.Symbol))
|
|
{
|
|
_dataReceived[qb.Symbol] = new List<QuoteBar>();
|
|
}
|
|
|
|
_dataReceived[qb.Symbol].Add(qb);
|
|
}
|
|
|
|
if (_invested || !hasOptionQuoteBars)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (data.ContainsKey(_es20h20) && data.ContainsKey(_es19m20))
|
|
{
|
|
SetHoldings(_es20h20, 0.2);
|
|
SetHoldings(_es19m20, 0.2);
|
|
|
|
_invested = true;
|
|
}
|
|
}
|
|
|
|
public override void OnEndOfAlgorithm()
|
|
{
|
|
base.OnEndOfAlgorithm();
|
|
|
|
if (!_onDataReached)
|
|
{
|
|
throw new Exception("OnData() was never called.");
|
|
}
|
|
if (_symbolsReceived.Count != _expectedSymbolsReceived.Count)
|
|
{
|
|
throw new AggregateException($"Expected {_expectedSymbolsReceived.Count} option contracts Symbols, found {_symbolsReceived.Count}");
|
|
}
|
|
|
|
var missingSymbols = new List<Symbol>();
|
|
foreach (var expectedSymbol in _expectedSymbolsReceived)
|
|
{
|
|
if (!_symbolsReceived.Contains(expectedSymbol))
|
|
{
|
|
missingSymbols.Add(expectedSymbol);
|
|
}
|
|
}
|
|
|
|
if (missingSymbols.Count > 0)
|
|
{
|
|
throw new Exception($"Symbols: \"{string.Join(", ", missingSymbols)}\" were not found in OnData");
|
|
}
|
|
|
|
foreach (var expectedSymbol in _expectedSymbolsReceived)
|
|
{
|
|
var data = _dataReceived[expectedSymbol];
|
|
var nonDupeDataCount = data.Select(x =>
|
|
{
|
|
x.EndTime = default(DateTime);
|
|
return x;
|
|
}).Distinct().Count();
|
|
|
|
if (nonDupeDataCount < 1000)
|
|
{
|
|
throw new Exception($"Received too few data points. Expected >=1000, found {nonDupeDataCount} for {expectedSymbol}");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <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, Language.Python };
|
|
|
|
/// <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%"},
|
|
{"Compounding Annual Return", "217.585%"},
|
|
{"Drawdown", "0.600%"},
|
|
{"Expectancy", "0"},
|
|
{"Net Profit", "0.635%"},
|
|
{"Sharpe Ratio", "0"},
|
|
{"Probabilistic Sharpe Ratio", "0%"},
|
|
{"Loss Rate", "0%"},
|
|
{"Win Rate", "0%"},
|
|
{"Profit-Loss Ratio", "0"},
|
|
{"Alpha", "0"},
|
|
{"Beta", "0"},
|
|
{"Annual Standard Deviation", "0"},
|
|
{"Annual Variance", "0"},
|
|
{"Information Ratio", "-14.395"},
|
|
{"Tracking Error", "0.043"},
|
|
{"Treynor Ratio", "0"},
|
|
{"Total Fees", "$7.40"},
|
|
{"Estimated Strategy Capacity", "$28000000.00"},
|
|
{"Fitness Score", "1"},
|
|
{"Kelly Criterion Estimate", "0"},
|
|
{"Kelly Criterion Probability Value", "0"},
|
|
{"Sortino Ratio", "79228162514264337593543950335"},
|
|
{"Return Over Maximum Drawdown", "79228162514264337593543950335"},
|
|
{"Portfolio Turnover", "3.199"},
|
|
{"Total Insights Generated", "0"},
|
|
{"Total Insights Closed", "0"},
|
|
{"Total Insights Analysis Completed", "0"},
|
|
{"Long Insight Count", "0"},
|
|
{"Short Insight Count", "0"},
|
|
{"Long/Short Ratio", "100%"},
|
|
{"Estimated Monthly Alpha Value", "$0"},
|
|
{"Total Accumulated Estimated Alpha Value", "$0"},
|
|
{"Mean Population Estimated Insight Value", "$0"},
|
|
{"Mean Population Direction", "0%"},
|
|
{"Mean Population Magnitude", "0%"},
|
|
{"Rolling Averaged Population Direction", "0%"},
|
|
{"Rolling Averaged Population Magnitude", "0%"},
|
|
{"OrderListHash", "35738733ff791eeeaf508faec804cab0"}
|
|
};
|
|
}
|
|
}
|