Tick-level backtesting tools?

Discussion in 'Automated Trading' started by foible, Nov 5, 2008.

  1. fyi in tradelink, you can do real + historical like this :

    BarList bl = BarList.FromCSV("IBM","IBMOHLC.csv");

    and then as new ticks come in, handle them via gotTick event handler and add them to the barlist (optionally pass the barlist to the chart if the chart is already created)

    Chart c = new Chart("IBM");

    void tl_gotTick(Tick t)
    {
    bl.newTick(t);
    c.NewBarList(bl);
    }

    http://tradelink.googlecode.com
     
    #21     Dec 1, 2008