-
Notifications
You must be signed in to change notification settings - Fork 40
/
data-r.js
132 lines (106 loc) · 2.96 KB
/
data-r.js
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
var fs = require('fs');
var ETF50 = require('./data-futu/50ETF.json')
var ETF300 = require('./data-futu/300ETF.json')
var ETF500 = require('./data-futu/500ETF.json')
/**
* 数据处理,增加各个均线
*/
// 50ETF
for (let index = 0; index < ETF50.length; index++) {
let etf = ETF50[index];
etf.r5 = 0;
etf.r10 = 0;
etf.r20 = 0;
etf.r30 = 0;
etf.r40 = 0;
if (index < 40) {
continue;
}
for (let i = index - 5; i < index; i++) {
etf.r5 = etf.r5 + ETF50[i].close;
}
for (let i = index - 10; i < index; i++) {
etf.r10 = etf.r10 + ETF50[i].close;
}
for (let i = index - 20; i < index; i++) {
etf.r20 = etf.r20 + ETF50[i].close;
}
for (let i = index - 30; i < index; i++) {
etf.r30 = etf.r30 + ETF50[i].close;
}
for (let i = index - 40; i < index; i++) {
etf.r40 = etf.r40 + ETF50[i].close;
}
etf.r5 = (etf.r5 / 5).toFixed(3) - 0;
etf.r10 = (etf.r10 / 10).toFixed(3) - 0;
etf.r20 = (etf.r20 / 20).toFixed(3) - 0;
etf.r30 = (etf.r30 / 30).toFixed(3) - 0;
etf.r40 = (etf.r40 / 40).toFixed(3) - 0;
}
fs.writeFileSync('./data-r40/50ETF.json', JSON.stringify(ETF50, 2, 2))
// 300ETF
for (let index = 0; index < ETF300.length; index++) {
let etf = ETF300[index];
etf.r5 = 0;
etf.r10 = 0;
etf.r20 = 0;
etf.r30 = 0;
etf.r40 = 0;
if (index < 40) {
continue;
}
for (let i = index - 5; i < index; i++) {
etf.r5 = etf.r5 + ETF300[i].close;
}
for (let i = index - 10; i < index; i++) {
etf.r10 = etf.r10 + ETF300[i].close;
}
for (let i = index - 20; i < index; i++) {
etf.r20 = etf.r20 + ETF300[i].close;
}
for (let i = index - 30; i < index; i++) {
etf.r30 = etf.r30 + ETF300[i].close;
}
for (let i = index - 40; i < index; i++) {
etf.r40 = etf.r40 + ETF300[i].close;
}
etf.r5 = (etf.r5 / 5).toFixed(3) - 0;
etf.r10 = (etf.r10 / 10).toFixed(3) - 0;
etf.r20 = (etf.r20 / 20).toFixed(3) - 0;
etf.r30 = (etf.r30 / 30).toFixed(3) - 0;
etf.r40 = (etf.r40 / 40).toFixed(3) - 0;
}
fs.writeFileSync('./data-r40/300ETF.json', JSON.stringify(ETF300, 2, 2))
// 500ETF
for (let index = 0; index < ETF500.length; index++) {
let etf = ETF500[index];
etf.r5 = 0;
etf.r10 = 0;
etf.r20 = 0;
etf.r30 = 0;
etf.r40 = 0;
if (index < 40) {
continue;
}
for (let i = index - 5; i < index; i++) {
etf.r5 = etf.r5 + ETF500[i].close;
}
for (let i = index - 10; i < index; i++) {
etf.r10 = etf.r10 + ETF500[i].close;
}
for (let i = index - 20; i < index; i++) {
etf.r20 = etf.r20 + ETF500[i].close;
}
for (let i = index - 30; i < index; i++) {
etf.r30 = etf.r30 + ETF500[i].close;
}
for (let i = index - 40; i < index; i++) {
etf.r40 = etf.r40 + ETF500[i].close;
}
etf.r5 = (etf.r5 / 5).toFixed(3) - 0;
etf.r10 = (etf.r10 / 10).toFixed(3) - 0;
etf.r20 = (etf.r20 / 20).toFixed(3) - 0;
etf.r30 = (etf.r30 /30).toFixed(3) - 0;
etf.r40 = (etf.r40 / 40).toFixed(3) - 0;
}
fs.writeFileSync('./data-r40/500ETF.json', JSON.stringify(ETF500, 2, 2))