forked from theforage/forage-jpmc-swe-task-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulti_commit.patch
179 lines (158 loc) · 11.3 KB
/
multi_commit.patch
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
From 988093e37b2ec7e0215609bce5445569a1a33612 Mon Sep 17 00:00:00 2001
From: Joe Ferrer <[email protected]>
Date: Wed, 1 Mar 2023 01:05:18 +1100
Subject: [PATCH 1/4] Move python files to datafeed dir
---
requirements.txt => datafeed/requirements.txt | 0
server.py => datafeed/server3.py | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename requirements.txt => datafeed/requirements.txt (100%)
rename server.py => datafeed/server3.py (100%)
diff --git a/requirements.txt b/datafeed/requirements.txt
similarity index 100%
rename from requirements.txt
rename to datafeed/requirements.txt
diff --git a/server.py b/datafeed/server3.py
similarity index 100%
rename from server.py
rename to datafeed/server3.py
--
2.41.0.windows.1
From 6679f49b57d7169cc288e48e36528c153829db49 Mon Sep 17 00:00:00 2001
From: Nyashavasoya <[email protected]>
Date: Sat, 5 Aug 2023 14:45:32 +0530
Subject: [PATCH 2/4] Updated Graph.tsx
---
src/Graph.tsx | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/src/Graph.tsx b/src/Graph.tsx
index 277797d..2ddae5e 100644
--- a/src/Graph.tsx
+++ b/src/Graph.tsx
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
-import { Table } from '@finos/perspective';
+import { Table, TableData } from '@finos/perspective';
import { ServerRespond } from './DataStreamer';
import { DataManipulator } from './DataManipulator';
import './Graph.css';
@@ -23,10 +23,13 @@ class Graph extends Component<IProps, {}> {
const elem = document.getElementsByTagName('perspective-viewer')[0] as unknown as PerspectiveViewerElement;
const schema = {
- stock: 'string',
- top_ask_price: 'float',
- top_bid_price: 'float',
+ price_abc: 'float',
+ price_def: 'float',
+ ratio: 'float',
timestamp: 'date',
+ upper_bound: 'float',
+ lower_bound: 'float',
+ trigger_alert: 'float',
};
if (window.perspective && window.perspective.worker()) {
@@ -40,19 +43,22 @@ class Graph extends Component<IProps, {}> {
elem.setAttribute('row-pivots', '["timestamp"]');
elem.setAttribute('columns', '["top_ask_price"]');
elem.setAttribute('aggregates', JSON.stringify({
- stock: 'distinctcount',
- top_ask_price: 'avg',
- top_bid_price: 'avg',
+ price_abc: 'avg',
+ price_def: 'avg',
+ ratio: 'avg',
timestamp: 'distinct count',
+ upper_bound: 'avg',
+ lower_bound: 'avg',
+ trigger_alert: 'avg',
}));
}
}
componentDidUpdate() {
if (this.table) {
- this.table.update(
+ this.table.update([
DataManipulator.generateRow(this.props.data),
- );
+ ] as unknown as TableData);
}
}
}
--
2.41.0.windows.1
From e58b3dcd3f85b81a199ceaa8c58bc8f87fdb463e Mon Sep 17 00:00:00 2001
From: Nyashavasoya <[email protected]>
Date: Sat, 5 Aug 2023 15:08:19 +0530
Subject: [PATCH 3/4] Updated DataManipulator.ts
---
src/DataManipulator.ts | 31 +++++++++++++++++++++----------
1 file changed, 21 insertions(+), 10 deletions(-)
diff --git a/src/DataManipulator.ts b/src/DataManipulator.ts
index 7f62295..5b525fa 100644
--- a/src/DataManipulator.ts
+++ b/src/DataManipulator.ts
@@ -1,20 +1,31 @@
import { ServerRespond } from './DataStreamer';
export interface Row {
- stock: string,
- top_ask_price: number,
+ price_abc: number,
+ price_def: number,
+ ratio: number,
timestamp: Date,
+ upper_bound: number,
+ lower_bound: number,
+ trigger_alert: number | undefined,
}
export class DataManipulator {
- static generateRow(serverResponds: ServerRespond[]) {
- return serverResponds.map((el: any) => {
- return {
- stock: el.stock,
- top_ask_price: el.top_ask && el.top_ask.price || 0,
- timestamp: el.timestamp,
- };
- })
+ static generateRow(serverResponds: ServerRespond[]): Row {
+ const priceABC = (serverResponds[0].top_ask.price + serverResponds[0].top_bid.price) / 2;
+ const priceDEF = (serverResponds[1].top_ask.price + serverResponds[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: serverResponds[0].timestamp > serverResponds[1].timestamp ? serverResponds[0].timestamp : serverResponds[1].timestamp,
+ upper_bound: upperBound,
+ lower_bound: lowerBound,
+ trigger_alert: (ratio > upperBound || ratio < lowerBound) ? ratio : undefined,
+ };
}
}
--
2.41.0.windows.1
From 1ed16cf0fdb7689b0a983e812bc398842a9f8251 Mon Sep 17 00:00:00 2001
From: Nyashavasoya <[email protected]>
Date: Sat, 5 Aug 2023 15:10:27 +0530
Subject: [PATCH 4/4] Updated Graph.tsx
---
src/Graph.tsx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/Graph.tsx b/src/Graph.tsx
index 2ddae5e..bda3700 100644
--- a/src/Graph.tsx
+++ b/src/Graph.tsx
@@ -39,9 +39,8 @@ class Graph extends Component<IProps, {}> {
// Load the `table` in the `<perspective-viewer>` DOM reference.
elem.load(this.table);
elem.setAttribute('view', 'y_line');
- elem.setAttribute('column-pivots', '["stock"]');
elem.setAttribute('row-pivots', '["timestamp"]');
- elem.setAttribute('columns', '["top_ask_price"]');
+ elem.setAttribute('columns', '["ratio", "lower_bound", "upper_bound", "trigger_alert"]');
elem.setAttribute('aggregates', JSON.stringify({
price_abc: 'avg',
price_def: 'avg',
--
2.41.0.windows.1