Ticker/Symbol Search
Synchronous Fetch¶
Asynchronous Fetch¶
Response SearchResponse¶
public void onData(List<Match> matches){
    matches.forEach(match -> {
        System.out.println(match.getSymbol());
        System.out.println(match.getName());
        System.out.println(match.getType());
        System.out.println(match.getRegion());
        System.out.println(match.getMarketOpen());
        System.out.println(match.getMarketClose());
        System.out.println(match.getTimezone());
        System.out.println(match.getCurrency());
        System.out.println(match.getMatchScore());
    });
}