I have to click continue 236 times....

Would it be possible to just have an option to load them automatically with the same or with the auto-detected settings so I don't need to click continue 236 times when I load all my stock reports please?

EDIT:
OK Hankys says
"add the symbols to predefinedsymbols.csv"

Which is great but it would be even better if I could automatically add them to this file. Please consider this a request for this feature.


Attachments
Screenshot 277.png
(129.65 KiB)
  • Votes +4
  • Project QuantAnalyzer
  • Type Feature
  • Status New
  • Priority Low

History

b
#1

bentra

11.05.2021 21:40

Task created

b
#2

bentra

11.05.2021 21:41
Voted for this task.
b
#3

bentra

12.05.2021 08:50

Here's the python script I used to get all the symbols from mt5 and put them in a file separated by newlines so I could copy and paste them in to the csv.


import os csvdir = r'D:\test\csv.csv' directory = r'C:\Users\user\AppData\Roaming\MetaQuotes\Terminal\A562C60AAEED2D6E7E5976B5FCB75493\bases\Default\history' for entry in os.scandir(directory):     if (entry.is_dir()):         print(entry.name)         myline = entry.name + '''\n'''         print(myline)         f = open(csvdir, "a")         f.write(myline)         f.close()


MB
#4

bacca87

09.07.2021 10:54
Voted for this task.
TM
#5

tmatejka.

10.08.2021 22:30
Voted for this task.
Cc
#6

Cyber

01.06.2022 17:25
Voted for this task.

Votes: +4

Drop files to upload

or

choose files

Max size: 5MB

Not allowed: exe, msi, application, reg, php, js, htaccess, htpasswd, gitignore

...
Wait please