/*
* 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.
*/
namespace QuantConnect.Securities.Positions
{
///
/// Defines a quantity of a security's holdings for inclusion in a position group
///
public class Position : IPosition
{
///
/// The symbol
///
public Symbol Symbol { get; }
///
/// The quantity
///
public decimal Quantity { get; }
///
/// The unit quantity. The unit quantities of a group define the group. For example, a covered
/// call has 100 units of stock and -1 units of call contracts.
///
public decimal UnitQuantity { get; }
///
/// Initializes a new instance of the class
///
/// The symbol
/// The quantity
/// The position's unit quantity within its group
public Position(Symbol symbol, decimal quantity, decimal unitQuantity)
{
Symbol = symbol;
Quantity = quantity;
UnitQuantity = unitQuantity;
}
///
/// Initializes a new instance of the class using the security's lot size
/// as it's unit quantity. If quantity is null, then the security's holdings quantity is used.
///
/// The security
/// The quantity, if null, the security's holdings quantity is used
public Position(Security security, decimal? quantity = null)
: this(security.Symbol, quantity ?? security.Holdings.Quantity, security.SymbolProperties.LotSize)
{
}
/// Returns a string that represents the current object.
/// A string that represents the current object.
public override string ToString()
{
return $"{Symbol}: {Quantity}";
}
}
}