Table of Contents

Class SymbolMatches

Namespace
Tudormobile.AlphaVantage.Entities
Assembly
Tudormobile.AlphaVantageAPI.dll

Represents the collection of symbol search results returned by the Alpha Vantage symbol search API.

public class SymbolMatches : IEntity
Inheritance
SymbolMatches
Implements
Inherited Members

Remarks

This class encapsulates both the original search keywords and the list of matching symbols found, providing a complete response for symbol search operations.

Constructors

SymbolMatches()

public SymbolMatches()

Properties

Keywords

Gets the search keywords used to find matching symbols.

public string Keywords { get; init; }

Property Value

string

The original search query string that was used to perform the symbol search.

Matches

Gets the list of symbol matches found for the search query.

public List<SymbolMatch> Matches { get; init; }

Property Value

List<SymbolMatch>

A list of SymbolMatch objects representing securities that match the search criteria. Returns an empty list if no matches are found.

Remarks

Results are typically ordered by relevance, with the best matches appearing first based on their MatchScore values.