예제 #1
0
        public CompositeScoreResult GetCompositeScore(string symbol)
        {
            symbol = symbol.ToUpper();
            Security quote = YahooFinance.GetQuoteAsync(symbol).Result;

            return(Indicators.GetCompositeScoreResult(symbol, quote)); //no indicator API needed
        }
예제 #2
0
 //Used internally for cache loading
 public static CompositeScoreResult GetCompositeScoreInternal(string symbol, Security quote)
 {
     return(Indicators.GetCompositeScoreResult(symbol, quote)); //no indicator API needed
 }