Log in to see Cloud of Tags

Wealth-Lab Wiki

Yahoo Analyst Ratings provider

RSS
This is a fundamental provider that downloads up to 20 years of historical data for analyst buy and sell recommendations for U.S. stocks available at Yahoo! Finance.

Part of MS123 Extra Fundamental/News Providers.

Sample chart annotations

Sample chart annotations


The provider only considers Upgrades (a green "+" on charts) and Downgrades (a red "-") while Initiated's are ignored. Each rating comes with extra details attached: firm (analyst), from (previous rating) and to (current rating). These are available in two forms:

  • In a popup when mousing over an Analyst Rating on a stock chart
  • In WealthScript Strategies via the GetDetail or FormatValue methods:

Make sure you've collected the fundamental data before running this Strategy (Data Manager > Update Data tab > check "Analyst ratings" > DataSets tab > "Update DataSet").

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using WealthLab;
using WealthLab.Indicators;

namespace WealthLab.Strategies { public class MyStrategy : WealthScript { protected override void Execute() { // Illustrates the usage of GetDetail using the fundamental data item "analyst rating"

const char tab = '\u0009'; string item = "analyst rating"; IList<FundamentalItem> fList = FundamentalDataItems(item); ClearDebug(); PrintDebug(Bars.Symbol + tab + "Item Count: " + fList.Count); PrintDebug("Date " + tab + "Analyst"); foreach (FundamentalItem fi in fList) { PrintDebug( fi.Date.ToShortDateString() + tab + fi.GetDetail("firm") + tab + fi.GetDetail("from") + tab + fi.GetDetail("to") + tab ); }

} } }

Important Disclaimer: The information provided by Wealth-Lab is strictly for informational purposes and is not to be construed as advice or solicitation to buy or sell any security.  The owner of Wealth-Lab.com assumes no liability resulting from the use of the material contained herein for investment purposes. By using this web site, you agree to the terms of this disclaimer and our Terms of Use.


ScrewTurn Wiki. Some of the icons created by FamFamFam.