removeBacktest(id) {
    let item = this.byId[id];
    this.byId[id] = null;
    this.tests = this.tests.filter((s)=> s.id !== id);
    this.fire("removed", {item: item});