forked from TreborNamor/TradingView-Machine-Learning-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TradeViewGUI.py
456 lines (418 loc) · 21.4 KB
/
TradeViewGUI.py
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
import sys
from distutils.util import strtobool
from PyQt5 import uic
from PyQt5.QtCore import QSettings
from PyQt5.QtWidgets import (
QApplication,
QCheckBox,
QLineEdit,
QMainWindow,
QMessageBox,
QWidget,
)
from selenium import webdriver
from selenium.webdriver.firefox.options import Options
from webdriver_manager.firefox import GeckoDriverManager
class Main(QMainWindow):
def __init__(self):
super().__init__()
self.ui = uic.loadUi("tradingview.ui", self)
self.settings = QSettings("TradingviewOptimizer", "Strategy Parameters")
self.gui_restore()
self.pushButton.clicked.connect(self.optimize_longs_shorts)
self.pushButton.clicked.connect(self.optimize_long)
self.pushButton.clicked.connect(self.optimize_long_stoploss)
self.pushButton.clicked.connect(self.optimize_long_takeprofit)
self.pushButton.clicked.connect(self.optimize_short)
self.pushButton.clicked.connect(self.optimize_short_stoploss)
self.pushButton.clicked.connect(self.optimize_short_takeprofit)
self.minLongStoplossValue.textChanged.connect(self.gui_save)
self.maxLongStoplossValue.textChanged.connect(self.gui_save)
self.minLongTakeprofitValue.textChanged.connect(self.gui_save)
self.maxLongTakeprofitValue.textChanged.connect(self.gui_save)
self.LongIncrementValue.textChanged.connect(self.gui_save)
self.minShortStoplossValue.textChanged.connect(self.gui_save)
self.maxShortStoplossValue.textChanged.connect(self.gui_save)
self.minShortTakeprofitValue.textChanged.connect(self.gui_save)
self.maxShortTakeprofitValue.textChanged.connect(self.gui_save)
self.ShortIncrementValue.textChanged.connect(self.gui_save)
self.decimalPlaceValue.textChanged.connect(self.gui_save)
self.maxAttemptsValue.textChanged.connect(self.gui_save)
self.firefoxProfileString.textChanged.connect(self.gui_save)
self.FirefoxcheckBox.stateChanged.connect(self.gui_save)
self.comboBox.currentTextChanged.connect(self.comboBoxSelection)
if self.comboBox.currentIndex() == 0:
self.minLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.LongIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.ShortIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.decimalPlaceValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxAttemptsValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongStoplossValue.setEnabled(True)
self.maxLongStoplossValue.setEnabled(True)
self.minLongTakeprofitValue.setEnabled(True)
self.maxLongTakeprofitValue.setEnabled(True)
self.minShortStoplossValue.setEnabled(True)
self.maxShortStoplossValue.setEnabled(True)
self.minShortTakeprofitValue.setEnabled(True)
self.maxShortTakeprofitValue.setEnabled(True)
self.decimalPlaceValue.setEnabled(True)
self.maxAttemptsValue.setEnabled(True)
self.LongIncrementValue.setEnabled(False)
self.ShortIncrementValue.setEnabled(False)
def create_driver(self):
"""Creating driver."""
try:
options = Options()
if self.FirefoxcheckBox.isChecked():
options.headless = True
elif not self.FirefoxcheckBox.isChecked():
options.headless = False
profile = webdriver.FirefoxProfile(self.firefoxProfileString.text())
driver = webdriver.Firefox(
profile, options=options, executable_path=GeckoDriverManager().install()
)
return driver
except Exception:
pass
def gui_save(self):
for obj in self.findChildren(QWidget):
if isinstance(obj, QLineEdit):
name = obj.objectName()
value = obj.text()
self.settings.setValue(name, value)
if isinstance(obj, QCheckBox):
name = obj.objectName()
state = obj.isChecked()
self.settings.setValue(name, state)
def gui_restore(self):
for obj in self.findChildren(QWidget):
if isinstance(obj, QLineEdit):
name = obj.objectName()
value = self.settings.value(name)
obj.setText(value)
if isinstance(obj, QCheckBox):
name = obj.objectName()
value = self.settings.value(name) # get stored value from registry
if value is not None:
obj.setChecked(strtobool(value)) # restore checkbox
def closeEvent(self, event):
msgBox = QMessageBox(
QMessageBox.Warning,
"Window Close",
"Are you sure you want to close the window?",
buttons=QMessageBox.Yes | QMessageBox.No,
)
msgBox.setDefaultButton(QMessageBox.No)
msgBox.exec_()
reply = msgBox.standardButton(msgBox.clickedButton())
if reply == QMessageBox.Yes:
event.accept()
self.gui_save()
else:
event.ignore()
def optimize_longs_shorts(self):
if self.comboBox.currentIndex() == 0:
from scripts import OptimizeLongsShorts
OptimizeLongsShorts.LongShortScript()
def optimize_long(self):
if self.comboBox.currentIndex() == 1:
from scripts import OptimizeLong
OptimizeLong.LongScript()
def optimize_short(self):
if self.comboBox.currentIndex() == 2:
from scripts import OptimizeShort
OptimizeShort.ShortScript()
def optimize_long_stoploss(self):
if self.comboBox.currentIndex() == 3:
from scripts import OptimizeLongStoploss
OptimizeLongStoploss.LongStoploss()
def optimize_long_takeprofit(self):
if self.comboBox.currentIndex() == 4:
from scripts import OptimizeLongTakeprofit
OptimizeLongTakeprofit.LongTakeProfit()
def optimize_short_stoploss(self):
if self.comboBox.currentIndex() == 5:
from scripts import OptimizeShortStoploss
OptimizeShortStoploss.ShortStoploss()
def optimize_short_takeprofit(self):
if self.comboBox.currentIndex() == 6:
from scripts import OptimizeShortTakeprofit
OptimizeShortTakeprofit.ShortTakeProfit()
def comboBoxSelection(self):
if self.comboBox.currentIndex() == 0:
self.minLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.LongIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.ShortIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.decimalPlaceValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxAttemptsValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongStoplossValue.setEnabled(True)
self.maxLongStoplossValue.setEnabled(True)
self.minLongTakeprofitValue.setEnabled(True)
self.maxLongTakeprofitValue.setEnabled(True)
self.minShortStoplossValue.setEnabled(True)
self.maxShortStoplossValue.setEnabled(True)
self.minShortTakeprofitValue.setEnabled(True)
self.maxShortTakeprofitValue.setEnabled(True)
self.decimalPlaceValue.setEnabled(True)
self.maxAttemptsValue.setEnabled(True)
self.LongIncrementValue.setEnabled(False)
self.ShortIncrementValue.setEnabled(False)
if self.comboBox.currentIndex() == 1:
self.minLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.LongIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.ShortIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.decimalPlaceValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxAttemptsValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongStoplossValue.setEnabled(True)
self.maxLongStoplossValue.setEnabled(True)
self.minLongTakeprofitValue.setEnabled(True)
self.maxLongTakeprofitValue.setEnabled(True)
self.LongIncrementValue.setEnabled(False)
self.minShortStoplossValue.setEnabled(False)
self.maxShortStoplossValue.setEnabled(False)
self.minShortTakeprofitValue.setEnabled(False)
self.maxShortTakeprofitValue.setEnabled(False)
self.ShortIncrementValue.setEnabled(False)
self.decimalPlaceValue.setEnabled(True)
self.maxAttemptsValue.setEnabled(True)
if self.comboBox.currentIndex() == 2:
self.minLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.LongIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.ShortIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.decimalPlaceValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxAttemptsValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongStoplossValue.setEnabled(False)
self.maxLongStoplossValue.setEnabled(False)
self.minLongTakeprofitValue.setEnabled(False)
self.maxLongTakeprofitValue.setEnabled(False)
self.LongIncrementValue.setEnabled(False)
self.minShortStoplossValue.setEnabled(True)
self.maxShortStoplossValue.setEnabled(True)
self.minShortTakeprofitValue.setEnabled(True)
self.maxShortTakeprofitValue.setEnabled(True)
self.ShortIncrementValue.setEnabled(False)
self.decimalPlaceValue.setEnabled(True)
self.maxAttemptsValue.setEnabled(True)
if self.comboBox.currentIndex() == 3:
self.minLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.LongIncrementValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.ShortIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.decimalPlaceValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxAttemptsValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongStoplossValue.setEnabled(True)
self.maxLongStoplossValue.setEnabled(True)
self.minLongTakeprofitValue.setEnabled(False)
self.maxLongTakeprofitValue.setEnabled(False)
self.LongIncrementValue.setEnabled(True)
self.minShortStoplossValue.setEnabled(False)
self.maxShortStoplossValue.setEnabled(False)
self.minShortTakeprofitValue.setEnabled(False)
self.maxShortTakeprofitValue.setEnabled(False)
self.ShortIncrementValue.setEnabled(False)
self.decimalPlaceValue.setEnabled(False)
self.maxAttemptsValue.setEnabled(False)
if self.comboBox.currentIndex() == 4:
self.minLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxLongTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.LongIncrementValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.ShortIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.decimalPlaceValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxAttemptsValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongStoplossValue.setEnabled(False)
self.maxLongStoplossValue.setEnabled(False)
self.minLongTakeprofitValue.setEnabled(True)
self.maxLongTakeprofitValue.setEnabled(True)
self.LongIncrementValue.setEnabled(True)
self.minShortStoplossValue.setEnabled(False)
self.maxShortStoplossValue.setEnabled(False)
self.minShortTakeprofitValue.setEnabled(False)
self.maxShortTakeprofitValue.setEnabled(False)
self.ShortIncrementValue.setEnabled(False)
self.decimalPlaceValue.setEnabled(False)
self.maxAttemptsValue.setEnabled(False)
if self.comboBox.currentIndex() == 5:
self.minLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.LongIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortStoplossValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.minShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.ShortIncrementValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.decimalPlaceValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxAttemptsValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongStoplossValue.setEnabled(False)
self.maxLongStoplossValue.setEnabled(False)
self.minLongTakeprofitValue.setEnabled(False)
self.maxLongTakeprofitValue.setEnabled(False)
self.LongIncrementValue.setEnabled(False)
self.minShortStoplossValue.setEnabled(True)
self.maxShortStoplossValue.setEnabled(True)
self.minShortTakeprofitValue.setEnabled(False)
self.maxShortTakeprofitValue.setEnabled(False)
self.ShortIncrementValue.setEnabled(True)
self.decimalPlaceValue.setEnabled(False)
self.maxAttemptsValue.setEnabled(False)
if self.comboBox.currentIndex() == 6:
self.minLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxLongTakeprofitValue.setStyleSheet("color: rgb(21, 21, 47)")
self.LongIncrementValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxShortStoplossValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.maxShortTakeprofitValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.ShortIncrementValue.setStyleSheet(
"background-color: rgb(21, 21, 47); color: rgb(170, 255, 255);"
)
self.decimalPlaceValue.setStyleSheet("color: rgb(21, 21, 47)")
self.maxAttemptsValue.setStyleSheet("color: rgb(21, 21, 47)")
self.minLongStoplossValue.setEnabled(False)
self.maxLongStoplossValue.setEnabled(False)
self.minLongTakeprofitValue.setEnabled(False)
self.maxLongTakeprofitValue.setEnabled(False)
self.LongIncrementValue.setEnabled(False)
self.minShortStoplossValue.setEnabled(False)
self.maxShortStoplossValue.setEnabled(False)
self.minShortTakeprofitValue.setEnabled(True)
self.maxShortTakeprofitValue.setEnabled(True)
self.ShortIncrementValue.setEnabled(True)
self.decimalPlaceValue.setEnabled(False)
self.maxAttemptsValue.setEnabled(False)
def main():
app = QApplication(sys.argv)
win = Main()
win.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()