This fundamental provider downloads the complete historical
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: the firm (analyst, the previous and the current ratings. These are available in two forms:
- In a popup when mousing over an Analyst Rating on a stock chart
- In WealthScript Strategoes 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);
}
}
}
}