-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpage-context.js
270 lines (246 loc) · 11.1 KB
/
page-context.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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// TradingView page injection script for get data from window.TradingView object
let isBaseTradingView = true
window.addEventListener('message', async function (event) {
const url = window.location && window.location.origin ? window.location.origin : 'https://www.tradingview.com'
if (!event.origin.startsWith(url) || !event.data ||
!event.data.hasOwnProperty('name') || event.data.name !== 'iondvScript' ||
!event.data.hasOwnProperty('action'))
return
switch (event.data.action) {
case 'getPerformance': {
let tvData = {}
try {
if(isBaseTradingView)
tvData = window.TradingView.bottomWidgetBar._widgets.backtesting._reportWidgetsSet.reportWidget._data.performance
else if (isBaseTradingView === false)
tvData = window.TradingView.bottomWidgetBar._options.backtestingStrategyDispatcher._modelStrategies[0]._reportData.performance // First strategy, for new TV (deep history)
} catch (err) {
if (isBaseTradingView !== false) {
try {
tvData = window.TradingView.bottomWidgetBar._options.backtestingStrategyDispatcher._modelStrategies[0]._reportData.performance
} catch (e) {
isBaseTradingView = null
console.error("Can't get TV API perfomance data, please write to developer")
console.error(err)
console.error(e)
}
}
}
window.postMessage({name: 'iondvPage', action: event.data.action, data: tvData}, event.origin)
break
}
case 'show3DChart': {
try {
if (!event.data.hasOwnProperty('data'))
window.postMessage({name: 'iondvPage', action: event.data.action, message: "Can't get test results data"}, event.origin)
await show3DChart(event.data.data)
window.postMessage({name: 'iondvPage', action: event.data.action}, event.origin)
} catch (err) {
console.error(`[error] shor 3d chart.`, err)
window.postMessage({name: 'iondvPage', action: event.data.action, data: null, message: `${err}`}, event.origin)
}
break
}
default:
console.error(`[error] Unknown action for get data from page"${event.data.action}". Skip processing`)
window.postMessage({name: 'iondvPage', action: event.data.action, data: null, message: `${err}`}, event.origin)
}
})
async function show3DChart (testResults) {
if (typeof testResults === 'undefined' || !testResults.hasOwnProperty('perfomanceSummary') || testResults.perfomanceSummary.length === 0)
throw ('Do not exist backtesting results, please try backtest again')
if (typeof Plotly === 'undefined')
throw ("3D Chart library hadn't loaded. Please wait and try again")
return new Promise(resolve => {
create3DPopup(testResults)
const btnClose = document.getElementById('iondvBoxClose')
if (btnClose) {
btnClose.onclick = () => {
const iondv3DChartEl = document.getElementById('iondv3DChart')
if (iondv3DChartEl)
iondv3DChartEl.parentNode.removeChild(iondv3DChartEl)
return resolve()
}
}
const [paramNames, resultsNames] = prepareAxisList(testResults)
let xSelVal = paramNames[0]
let ySelVal = paramNames[1]
let zSelVal = testResults.hasOwnProperty('optParamName') ? testResults.optParamName : resultsNames[0]
setAxisOptions('iondvX', paramNames, xSelVal, ySelVal)
setAxisOptions('iondvY', paramNames, ySelVal, xSelVal)
setAxisOptions('iondvZ', resultsNames, zSelVal)
let aproxType = document.getElementById('iondvAprox').value
document.getElementById('iondvX').onclick = () => {
const curVal = document.getElementById('iondvX').value
if (xSelVal !== curVal) {
xSelVal = curVal
updateParamList('iondvY', paramNames, xSelVal)
updateChart(testResults.perfomanceSummary, xSelVal, ySelVal, zSelVal, aproxType)
}
}
document.getElementById('iondvY').onclick = () => {
const curVal = document.getElementById('iondvY').value
if (ySelVal !== curVal) {
ySelVal = curVal
updateParamList('iondvX', paramNames, ySelVal)
updateChart(testResults.perfomanceSummary, xSelVal, ySelVal, zSelVal, aproxType)
}
}
document.getElementById('iondvZ').onclick = () => {
const curVal = document.getElementById('iondvZ').value
if (zSelVal !== curVal) {
zSelVal = curVal
updateChart(testResults.perfomanceSummary, xSelVal, ySelVal, zSelVal, aproxType)
}
}
document.getElementById('iondvAprox').onclick = () => {
const curVal = document.getElementById('iondvAprox').value
if (aproxType !== curVal) {
aproxType = curVal
updateChart(testResults.perfomanceSummary, xSelVal, ySelVal, zSelVal, aproxType)
}
}
updateChart(testResults.perfomanceSummary, xSelVal, ySelVal, zSelVal)
})
}
function create3DPopup(testResults) {
const chart3d = document.createElement("div")
chart3d.id = 'iondv3DChart'
chart3d.setAttribute("style", `background-color:rgba(0, 0, 0, 0.4);
position:absolute; width:100%; height:100%; top:0px; left:0px; z-index:10000;`);
chart3d.style.height = document.documentElement.scrollHeight + "px";
chart3d.innerHTML = `<button id="iondvBoxClose" style="position: absolute;left: 50%;top: 50%;margin-top: -325px;margin-left: 465px;">Close</button>
<div style="position: absolute; left: 50%;top: 50%; padding: 5px;
width: 900px;height:600px; margin-top: -300px; margin-left: -400px;
background: #fff; border: 1px solid #ccc; box-shadow: 3px 3px 7px #777;
-webkit-box-shadow: 3px 3px 7px #777;-moz-border-radius: 22px; -webkit-border-radius: 22px;
z-index: 999;">
<div style="margin:0;padding: 0px;clear: both;width: 100%;">
<div style="display:inline-block;vertical-align: middle;padding: 0px;width: 175px;">
<h3 style="padding-bottom: 10px">Backtesting Results</h3>
<p>Strategy name: ${testResults['name']}<br>
Symbol: ${testResults['ticker']}<br>
Timeframe: ${testResults['timeFrame']}<br>
Backtest method: ${testResults['method']}<br>
Backtest cycles: ${testResults['perfomanceSummary'].length + testResults['filteredSummary'].length}(${testResults['cycles']})<br>
Parameter space: ${testResults['paramSpace']}<br>
${testResults['filterAscending'] !== null ? 'Filter by "' + testResults['filterParamName'] + '", value ' + testResults['filterValue']: ''}<br>
</p>
<div>Parameter on the x-axis <br><select id="iondvX" name="x" style="width: 170px"></select></div>
<div>Parameter on the y-axis <br><select id="iondvY" name="t" style="width: 170px"></select></div>
<div>Result on the z-axis <br><select id="iondvZ" name="z" style="width: 170px"></select></div>
<div>Aproximation type<br><select id="iondvAprox" name="aprox" style="width: 170px"><option value="minmax" selected="selected">MinMax</option><option value="max">Max</option><option value="min">Min</option><option value="avg">Average</option><</select></div>
</div>
<div style="display:inline-block;vertical-align: middle;padding: 0px;width:700px;height:600px">
<div id="iondvPlotly" style="width:100%;height:100%"></div>
</div>
</div>
</div>`
document.getElementsByTagName('body')[0].appendChild(chart3d)
}
function generateOptionsHtml (values, defVal = null) {
defVal = defVal === null ? values[0] : defVal
return values.reduce((text, item) => `${text}<option value="${item}"${item === defVal ? ' selected="selected"' : ''}>${item}</option>`, '')
}
function setAxisOptions(elId, values, defVal, excludedVal = null) {
const filteredValues = excludedVal !== null ? values.filter(item => item !== excludedVal) : values
let optionsHtml = generateOptionsHtml(filteredValues, defVal)
const axis = document.getElementById(elId)
axis.value = defVal
axis.innerHTML = optionsHtml
}
function prepareAxisList(testResults) {
const paramNames = []
Object.keys(testResults.perfomanceSummary[0]).forEach(item => {
if(item.startsWith('__'))
paramNames.push(item.substring(2))
})
if (paramNames.length === 0)
throw('None of parameters present in data')
else if (paramNames.length === 1)
paramNames.push('none')
const resultsNames = Object.keys(testResults.perfomanceSummary[0]).filter(item => !item.startsWith('__') && item !== 'comment')
if (resultsNames.length === 0)
throw('None of results present in data')
return [paramNames,resultsNames]
}
function updateParamList(elId, paramNames, excludedVal) {
const curVal = document.getElementById(elId).value
setAxisOptions(elId, paramNames, curVal, excludedVal)
}
function showPlotlyData(chartPlotlyEl, xData, yData, zData){//rawData) {
const data = [{
x: xData, y: yData, z: zData,
type: 'surface',
contours: {z: {show:true}}
}];
const layout = {
// xaxis: {title: {text: 'x Axis'}},
// yaxis: {title: {text: 't Axis'}},
// zaxis: {title: {text: 'z Axis'}},
autosize: true,
width: 700,
height: 600,
// highlightcolor: "limegreen",
showlegend: false,
margin: { l: 65, r: 50, b: 65, t: 90 }
};
Plotly.newPlot(chartPlotlyEl, data, layout);
}
function updateChart(perfomanceSummary, xSelVal, ySelVal, zName, aproxType) {
const xName = `__${xSelVal}`
const yName = `__${ySelVal}`
const chartPlotly = document.getElementById('iondvPlotly');
const yAxisDict = {}
const zAxisDict = {}
perfomanceSummary.forEach(item => {
if (item.hasOwnProperty(xName) && item.hasOwnProperty(yName) && item.hasOwnProperty(zName)) {
if(!yAxisDict.hasOwnProperty(item[yName]))
yAxisDict[item[yName]] = null
if (!zAxisDict.hasOwnProperty(item[xName]))
zAxisDict[item[xName]] = {}
if (!zAxisDict[item[xName]].hasOwnProperty(item[yName]))
zAxisDict[item[xName]][item[yName]] = []
zAxisDict[item[xName]][item[yName]].push(item[zName])
// zAxisDict[item[xName]][item[yName]] = item[zName]
} else {
console.log('MISSED ONE OF KEYS', xSelVal, ySelVal, zSelVal, item)
}
})
const xAxis = Object.keys(zAxisDict).sort((a,b) => a - b)
const yAxis = Object.keys(yAxisDict).sort((a,b) => a - b)
const zAxis = []
yAxis.forEach(y => {
const row = []
xAxis.forEach(x => {
if (zAxisDict.hasOwnProperty(x) && zAxisDict[x].hasOwnProperty(y)) {
if (!zAxisDict[x][y]) {
row.push(0)
} else if (zAxisDict[x][y].length === 1) {
row.push(zAxisDict[x][y][0])
} else {
let val
switch (aproxType){
case 'max':
val = Math.max(...zAxisDict[x][y])
break
case 'min':
val = Math.min(...zAxisDict[x][y])
break
case 'avg':
val = zAxisDict[x][y].reduce((acc,v,i,a)=>(acc+v/a.length),0)
break
case 'minmax':
default:
val = Math.max(...zAxisDict[x][y]) > Math.abs(Math.min(...zAxisDict[x][y])) ? Math.max(...zAxisDict[x][y]) : Math.min(...zAxisDict[x][y])
}
row.push(val)
}
} else {
row.push(0)
}
})
zAxis.push(row)
})
showPlotlyData(chartPlotly, xAxis, yAxis, zAxis)
}