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 | 
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 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 );
			}                                              
		}
	}
}