거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
8614
평가:
(7)
게시됨:
2008.08.14 08:11
업데이트됨:
2016.03.29 15:00
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

The script exports all the symbols available in the Market Watch window into a csv file ("MT4\experts\files\SymbolList(ServerName).csv").



The symbols are searched for by a blunt (I'm tempted to say) enumeration of letters. I.e., we take the AAAAAA symbol and check whether it is available in Market Watch. Then we take AAAAAB, and so on. The method is very slow, I couldn't invent anything wiser.


External variables:


- Min_CharsInSymbolName - the minimum length of the symbol name (can be from 1 to 10);


- Max_CharsInSymbolName - the maximum length of the symbol name (from 1 to 10);


- Use_Reshetka - to use or not the "#" symbol during the search (true/false);


- Use_Podcherkivanie - to use the "_" symbol;


- Use_09 - to use digits (0-9);


- Use_AZ - to use capital letters (A-Z);


- Use_az - to use lower-case letters (a-z).



The speed of working depends on the Max_CharsInSymbolName (the larger values are, the slower working will be) and on the amount of "Use_"-variables equal to true (the same). On my P4 2.4 GHz, all symbol names of six capital letters (like EURUSD) can be found within 18 minutes. If the characters of "#" and "_" are added, then the search takes 28 minutes. And if digits are added, too, then I have to wait for 3 hours. Respectively, if you choose the Max_CharsInSymbolName = 7 (I haven't ever met any longer symbols), you will be able to see the results only after 111 hours.



But it is no matter how many symbols there are in the Market Watch.


So, for the maximum efficiency choose "Show all", set the Max_CharsInSymbolName = 6, all "Use_"-variables except Use_az in the true position and leave it for the night.


And in the morning you will see something like this:








MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/8317

Altarius_RSI&Stoh Altarius_RSI&Stoh

I've tested the EA on EUR/USD M15, it uses stochastic and RSI.

DSS Bressert - double smoothed stochastic (Double Smoothed Stochastic Indicator by Walter Bressert) DSS Bressert - double smoothed stochastic (Double Smoothed Stochastic Indicator by Walter Bressert)

Indicator of overbuying/overselling

SymbolList fromSet SymbolList fromSet

The script extracts the list of symbols from the *.set file and saves it as the csv file.

moving average position system moving average position system

In this issue we will view the strategy called Moving Average Position System developed by the reader of our forum, Andrey. The strategy uses the only one indicator and the combined system of capital management.