forked from vagabond-systems/jpmc-task-3
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
Copy pathDataManipulator.ts
35 lines (29 loc) · 1 KB
/
DataManipulator.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { ServerRespond } from './DataStreamer';
export interface Row {
price_abc: number,
price_def: number,
ratio: number,
upper_bound: number,
lower_bound: number,
trigger_alert: number | undefined,
timestamp: Date,
}
export class DataManipulator {
static generateRow(serverRespond: ServerRespond[]): Row {
const priceABC = (serverRespond[0].top_ask.price + serverRespond[0].top_bid.price) / 2;
const priceDEF = (serverRespond[1].top_ask.price + serverRespond[1].top_bid.price) / 2;
const ratio = priceABC / priceDEF;
const upperBound = 1 + 0.05;
const lowerBound = 1 - 0.05;
return {
price_abc: priceABC,
price_def: priceDEF,
ratio,
timestamp: serverRespond[0].timestamp > serverRespond[1].timestamp ?
serverRespond[0].timestamp : serverRespond[1].timestamp,
upper_bound: upperBound,
lower_bound: lowerBound,
trigger_alert: (ratio > upperBound || ratio < lowerBound) ? ratio : undefined,
};
}
}