Interface IPortfolioProvider
- Namespace
- StockSharp.BusinessEntities
- Assembly
- StockSharp.BusinessEntities.dll
The portfolio provider interface.
public interface IPortfolioProvider
- Extension Methods
Properties
Portfolios
Get all portfolios.
IEnumerable<Portfolio> Portfolios { get; }
Property Value
Methods
LookupByPortfolioName(string)
To get the portfolio by the code name.
Portfolio LookupByPortfolioName(string name)
Parameters
name
stringPortfolio code name.
Returns
Events
NewPortfolio
New portfolio received.
event Action<Portfolio> NewPortfolio
Event Type
PortfolioChanged
Portfolio changed.
event Action<Portfolio> PortfolioChanged