public QuickenFile(WealthScript aws, string aTradeFileName, string aDateTimeFormat, string abarsSymbol) public bool ReadQuickenFile() public bool DisplayQuickenTradeData() public bool ChartQuickenTradeData()
using System; using System.Collections.Generic; using System.Text; using System.Drawing; using WealthLab; using WealthLab.Indicators; using Community.Components; /*** Requires installation of Community.Components Extension from www.wealth-lab.com > Extensions ***/namespace WealthLab.Strategies { public class MyStrategy : WealthScript { protected override void Execute() { ClearDebug(); bool ret; //Change this to an actual path containig Quicken reports QuickenFile qf = new QuickenFile(this, @"c:\users\joe\my documents\investments\quickenwl.txt",@"m/d/yyyy", Bars.Symbol); ret = qf.ReadQuickenFile(); ret = qf.DisplayQuickenTradeData(); ret = qf.ChartQuickenTradeData(); } } }