Skip to content

Commit 9c91cc2

Browse files
committed
Updated
1 parent 4c6d77b commit 9c91cc2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/app/machine-daytrading/machine-daytrading.service.ts

+3
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ export class MachineDaytradingService {
134134
}
135135

136136
getNextStock() {
137+
if (!this.currentStockList) {
138+
this.currentStockList = PrimaryList;
139+
}
137140
this.counter++;
138141
if (this.counter > this.currentStockList.length - 1) {
139142
this.counter = 0;

src/app/rh-table/rh-table.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ export class RhTableComponent implements OnInit, OnChanges, OnDestroy {
374374
}
375375
}
376376
}
377-
// this.getImpliedMovement(testResults);
377+
this.getImpliedMovement(testResults);
378378
}, 'rhtable_process' + symbol);
379379
}, 1000 - this.backtestBuffer.length * 10000);
380380
}

0 commit comments

Comments
 (0)