bb8bd27fe5
Build & Test Lean / build (push) Has been cancelled
* Apply changes from #2146 on current master Credit for most of these changes goes to https://github.com/viliwonka. Rebasing three years of changes didn't go so well, so I manually applied the changes in #2146 on the current master branch. This commit attempts to represent the changes in #2146 as closely as possible, no cleanup has been performed yet. Despite this, some changes were inevitable because part of #2146 has been implemented another way in the past three years. * Clean up * Process review comments * Add tests * symbol -> potentialConversionRateSymbol * Ensure regression tests run/get data * Fix broken test * Process review comments * Process review comments * Simplify currency conversion logic * Performance improvement, doc updates and test rename * Rebase fixes * Remove obsolete properties Co-authored-by: Martin-Molinero <martin@quantconnect.com>
145 lines
6.0 KiB
C#
145 lines
6.0 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.Interfaces;
|
|
|
|
namespace QuantConnect.Algorithm.CSharp
|
|
{
|
|
/// <summary>
|
|
/// This regression test reproduces the issue where a Cash instance is added
|
|
/// during execution by the BrokerageTransactionHandler, in this case the
|
|
/// algorithm will be adding it in OnData() to reproduce the same scenario.
|
|
/// </summary>
|
|
public class SetCashOnDataRegressionAlgorithm : QCAlgorithm, IRegressionAlgorithmDefinition
|
|
{
|
|
private Symbol _spy = QuantConnect.Symbol.Create("SPY", SecurityType.Equity, Market.USA);
|
|
private bool _added;
|
|
|
|
/// <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()
|
|
{
|
|
SetStartDate(2014, 12, 01); //Set Start Date
|
|
SetEndDate(2014, 12, 21); //Set End Date
|
|
SetCash(100000); //Set Strategy Cash
|
|
|
|
AddEquity("SPY", Resolution.Daily);
|
|
}
|
|
|
|
/// <summary>
|
|
/// OnData event is the primary entry point for your algorithm. Each new data point will be pumped in here.
|
|
/// </summary>
|
|
/// <param name="data">Slice object keyed by symbol containing the stock data</param>
|
|
public override void OnData(Slice data)
|
|
{
|
|
if (!_added)
|
|
{
|
|
_added = true;
|
|
// this should not be done by users but could be done by the BrokerageTransactionHandler
|
|
// Users: see and use SetCash()
|
|
Portfolio.CashBook.Add("EUR", 10,0);
|
|
}
|
|
else
|
|
{
|
|
var cash = Portfolio.CashBook["EUR"];
|
|
if (cash.CurrencyConversion == null
|
|
|| cash.ConversionRate == 0)
|
|
{
|
|
throw new Exception("Expected 'EUR' Cash to be fully set");
|
|
}
|
|
|
|
var eurUsdSubscription = SubscriptionManager.SubscriptionDataConfigService
|
|
.GetSubscriptionDataConfigs(QuantConnect.Symbol.Create("EURUSD", SecurityType.Forex, Market.Oanda),
|
|
includeInternalConfigs: true)
|
|
.Single();
|
|
if (!eurUsdSubscription.IsInternalFeed)
|
|
{
|
|
throw new Exception("Unexpected not internal 'EURUSD' Subscription");
|
|
}
|
|
}
|
|
|
|
if (!Portfolio.Invested)
|
|
{
|
|
SetHoldings(_spy, 1);
|
|
Debug("Purchased Stock");
|
|
}
|
|
}
|
|
|
|
/// <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", "1"},
|
|
{"Average Win", "0%"},
|
|
{"Average Loss", "0%"},
|
|
{"Compounding Annual Return", "14.647%"},
|
|
{"Drawdown", "4.800%"},
|
|
{"Expectancy", "0"},
|
|
{"Net Profit", "0.819%"},
|
|
{"Sharpe Ratio", "0.81"},
|
|
{"Probabilistic Sharpe Ratio", "47.420%"},
|
|
{"Loss Rate", "0%"},
|
|
{"Win Rate", "0%"},
|
|
{"Profit-Loss Ratio", "0"},
|
|
{"Alpha", "0.104"},
|
|
{"Beta", "0.183"},
|
|
{"Annual Standard Deviation", "0.157"},
|
|
{"Annual Variance", "0.025"},
|
|
{"Information Ratio", "0.004"},
|
|
{"Tracking Error", "0.201"},
|
|
{"Treynor Ratio", "0.697"},
|
|
{"Total Fees", "$2.75"},
|
|
{"Estimated Strategy Capacity", "$520000000.00"},
|
|
{"Lowest Capacity Asset", "SPY R735QTJ8XC9X"},
|
|
{"Fitness Score", "0.04"},
|
|
{"Kelly Criterion Estimate", "0"},
|
|
{"Kelly Criterion Probability Value", "0"},
|
|
{"Sortino Ratio", "1.44"},
|
|
{"Return Over Maximum Drawdown", "3.028"},
|
|
{"Portfolio Turnover", "0.052"},
|
|
{"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", "96a8985ed6c3b95ddb3ac6c7b12a725e"}
|
|
};
|
|
}
|
|
}
|