Sample chart annotations
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 FormatValue using the fundamental data item "insider transaction" const char tab = '\u0009'; string item = "oi insider transaction"; IList fList = FundamentalDataItems(item); ClearDebug(); PrintDebug(Bars.Symbol + tab + "Item Count: " + fList.Count); PrintDebug("Insider Transaction"); foreach (FundamentalItem fi in fList) { PrintDebug(fi.FormatValue().Replace("\n", " ") ); } } } }