Files
quantconnect--lean/Common/Statistics/Trade.cs
Martin Molinero b7bcdbef04 Adding OrderFee to OrderEvent
- Replacing `decimal` for `OrderFee` at the `OrderEvent`.
- Adding `FeeModelNotUsingAccountCurrency` regression test
- Adding unit tests for `CashBuyingPowerModel` and `SecurityMarginModel`
with non account currency fees
2018-12-10 13:18:41 -03:00

98 lines
3.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;
namespace QuantConnect.Statistics
{
/// <summary>
/// Represents a closed trade
/// </summary>
public class Trade
{
/// <summary>
/// The symbol of the traded instrument
/// </summary>
public Symbol Symbol { get; set; }
/// <summary>
/// The date and time the trade was opened
/// </summary>
public DateTime EntryTime { get; set; }
/// <summary>
/// The price at which the trade was opened (or the average price if multiple entries)
/// </summary>
public decimal EntryPrice { get; set; }
/// <summary>
/// The direction of the trade (Long or Short)
/// </summary>
public TradeDirection Direction { get; set; }
/// <summary>
/// The total unsigned quantity of the trade
/// </summary>
public decimal Quantity { get; set; }
/// <summary>
/// The date and time the trade was closed
/// </summary>
public DateTime ExitTime { get; set; }
/// <summary>
/// The price at which the trade was closed (or the average price if multiple exits)
/// </summary>
public decimal ExitPrice { get; set; }
/// <summary>
/// The gross profit/loss of the trade (as account currency)
/// </summary>
public decimal ProfitLoss { get; set; }
/// <summary>
/// The total fees associated with the trade (always positive value) (as account currency)
/// </summary>
public decimal TotalFees { get; set; }
/// <summary>
/// The Maximum Adverse Excursion (as account currency)
/// </summary>
public decimal MAE { get; set; }
/// <summary>
/// The Maximum Favorable Excursion (as account currency)
/// </summary>
public decimal MFE { get; set; }
/// <summary>
/// Returns the duration of the trade
/// </summary>
public TimeSpan Duration
{
get { return ExitTime - EntryTime; }
}
/// <summary>
/// Returns the amount of profit given back before the trade was closed
/// </summary>
public decimal EndTradeDrawdown
{
get { return ProfitLoss - MFE; }
}
}
}