Files
quantconnect--lean/Common/Interfaces/ISecurityPrice.cs
Martin Molinero 9ec1a41235 Performance improvements
- `PortfolioTargetCollection` avoid calling `Count` on
ConcurrentDictionary directly -> has to take all locks
- `SecurityChanges` change Union for Concat since constructor will call
HashSet
- Make `DynamicSecurityData` hold lazy data objects
- `RegisteredSecurityDataTypesProvider` avoid looping over all
registered types, adding `TryGetType`
- `Security.Update()` will no call group by on data since this data is
already grouped by type. Adding `ContainsFillForwardData` will allows to
be lazy and not re loop through the data unless necessary
- `DefaultAlphaHandler` will use the `static`
`Enumerable.Empty<Insight>` instance when possible
- `SubscriptionSynchronizer` will be lazy to construct the
`universeData` dictionary which is not used in most of the times. Will
use `Count` vs `Any` -> `Count` is known by the dictionary
- For python algorithms `JobQueue` will respect `AlgorithmLocation`, was
using unexisting `"algorithm-path-python"`
2019-10-17 10:26:37 -03:00

98 lines
3.2 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 QuantConnect.Data;
using QuantConnect.Securities;
namespace QuantConnect.Interfaces
{
/// <summary>
/// Reduced interface which allows setting and accessing
/// price properties for a <see cref="Security"/>
/// </summary>
public interface ISecurityPrice
{
/// <summary>
/// Get the current value of the security.
/// </summary>
decimal Price { get; }
/// <summary>
/// If this uses trade bar data, return the most recent close.
/// </summary>
decimal Close { get; }
/// <summary>
/// Access to the volume of the equity today
/// </summary>
decimal Volume { get; }
/// <summary>
/// Gets the most recent bid price if available
/// </summary>
decimal BidPrice { get; }
/// <summary>
/// Gets the most recent bid size if available
/// </summary>
decimal BidSize { get; }
/// <summary>
/// Gets the most recent ask price if available
/// </summary>
decimal AskPrice { get; }
/// <summary>
/// Gets the most recent ask size if available
/// </summary>
decimal AskSize { get; }
/// <summary>
/// Access to the open interest of the security today
/// </summary>
long OpenInterest { get; }
/// <summary>
/// <see cref="Symbol"/> for the asset.
/// </summary>
Symbol Symbol { get; }
/// <summary>
/// Update any security properties based on the latest market data and time
/// </summary>
/// <param name="data">New data packet from LEAN</param>
void SetMarketPrice(BaseData data);
/// <summary>
/// Updates all of the security properties, such as price/OHLCV/bid/ask based
/// on the data provided. Data is also stored into the security's data cache
/// </summary>
/// <param name="data">The security update data</param>
/// <param name="dataType">The data type</param>
/// <param name="containsFillForwardData">Flag indicating whether
/// <paramref name="data"/> contains any fill forward bar or not</param>
void Update(IReadOnlyList<BaseData> data, Type dataType, bool? containsFillForwardData);
/// <summary>
/// Get the last price update set to the security.
/// </summary>
/// <returns>BaseData object for this security</returns>
BaseData GetLastData();
}
}