CompetitionYear
StockSharp.MoexLchi
Results of the Best Private Investor contest for the specified year.
Properties
Methods
GetDays
public ValueTask<IEnumerable<DateTime>> GetDays(CancellationToken cancellationToken)
result = competitionYear.GetDays(cancellationToken)
Dates for which there is information about trades.
GetMembers
public ValueTask<IEnumerable<string>> GetMembers(CancellationToken cancellationToken)
result = competitionYear.GetMembers(cancellationToken)
Competitors.
GetTradesAsync
public Task<IEnumerable<ExecutionMessage>> GetTradesAsync(string member, DateTime date, CancellationToken cancellationToken)
result = competitionYear.GetTradesAsync(member, date, cancellationToken)
To get trades of the participant on the specified date.
- member
- Participant.
- date
- Date of competition.
- cancellationToken
- Cancellation token.
Returns: Trades of the participant.