Skip to content

Commit 2c989c8

Browse files
committed
Fixed lint issues
1 parent efd7a15 commit 2c989c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/product-view/product-view.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export class ProductViewComponent implements OnInit {
195195
let action = day.action;
196196
if (indicator) {
197197
const recommendation = day.recommendation[indicator].toUpperCase();
198-
switch(recommendation) {
198+
switch (recommendation) {
199199
case 'BEARISH': {
200200
action = 'STRONGSELL';
201201
break;
@@ -228,7 +228,7 @@ export class ProductViewComponent implements OnInit {
228228
this.algo.getBacktestEvaluation(data.symbol, pastDate, currentDate, data.algorithm)
229229
.map(result => {
230230
if (result.signals > defaultPeriod) {
231-
result.signals = result.signals.slice(result.signals.length - defaultPeriod, result.signals.length)
231+
result.signals = result.signals.slice(result.signals.length - defaultPeriod, result.signals.length);
232232
}
233233
this.initDefaultResults(data.symbol, result, result.signals, indicator);
234234
})

0 commit comments

Comments
 (0)