Fan sayfamıza katılın
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
- Görüntülemeler:
- 4163
- Derecelendirme:
- Yayınlandı:
- 2017.01.19 16:31
-
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git
The script allows you to try regular expressions.
Materials on regular expressions:
- The article "Regular expressions for traders"
- The library RegularExpressions in MQL5 for working with regular expressions
Before starting the work, please copy the all_functions.mq5 text file to the "sandbox": <data folder>\MQL5\Files\. The all_functions.mq5 text file contains all functions for processing events.
The input parameters contain the (int)(.*?)(\(\)) regular expression
In other words, we should find the following string:(int) — search for the "int" word occurrence
(.*?) — any symbol except for a newline character or another separator of a Unicode string, found zero or more times, not greedy
(\(\)) — search for the "()" word occurrence
int OnInit()
MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/16574

BB stops — RSI version.

Well known BB Stops (Bollinger Bands Stops) indicator with some additions and further adapting to MetaTrader 5 usage.