Nguyen Van Luong
Nguyen Van Luong
  • Информация
6+ лет
опыт работы
3
продуктов
0
демо-версий
0
работ
0
сигналов
0
подписчиков
Vladimir Karputov
Vladimir Karputov
Комментарий к теме How to start with MQL5
Calculate positions for all symbols Code: 'Calculate positions for all symbols.mq5 Objective: Several positions are open in the market. You need to get the number of positions (both BUY and SELL) for
Tham khảo CopyRate để lấy giá Open, Close của 1 nến
Vladimir Karputov
Vladimir Karputov
Комментарий к теме How to start with MQL5
Close a position at the intersection of the price and iMA Code 'Close a position at the intersection of the price and iMA.mq5' //+------------------------------------------------------------------+
Tham khảo cách khởi tạo giá trị ban đầu cho STRUC
Vladimir Karputov
Vladimir Karputov
Комментарий к теме How to start with MQL5
Example: how to calculate the number of BUY and SELL trades for each Magic number for the current day The code: 'Total transactions today by Magic number.mq5'
Tham khảo khi Alert cảnh báo sắp có tín hiệu xảy ra theo FAD
Vladimir Karputov
Vladimir Karputov
Комментарий к теме How to start with MQL5
Ahmad861 : Hey Vladimir, you have been helping me create my EA from the very beginning and asking for nothing in return and i want to thank you from the bottom of my heart. There is this one last
Vladimir Karputov
Vladimir Karputov
Комментарий к теме How to start with MQL5
Maximum price of the indicator in the visible window Code: ChartGetDouble.mq5 Task: in the subwindow number '1' find out the maximum value of the window
Tele
Sergei Poliukhov
Sergei Poliukhov
Комментарий к теме Send alert signal to telegram
This example How send message from indicator to Telegram #property link "https://www.mql5.com" #property version "1.00" #property strict #property indicator_chart_window #include <Wininet.mqh>
Alexander
Alexander
Комментарий к теме NumbersSeparator() function for Print big numbers
string FormatNumber( string numb, string delim= "," , string dec= "." ) { int pos= StringFind (numb,dec); if (pos==- 1 ) { string nnumb=numb; string enumb= "" ; } else { nnumb=
William Roeder
William Roeder
Комментарий к теме NumbersSeparator() function for Print big numbers
Compiled, not tested string DoubleToStrCommaSep( double v, int decimals= 4 ){ // 34,256,454.23 if (decimals == 0 ) return ( IntToStrCommaSep(v) ); if (v < 0 ) return ( "-" +
поделился статьей автора Denis Zyatkevich
Gửi file Report qua FTP
Создание и публикация отчетов о результатах торговли, отправка SMS-сообщений
Создание и публикация отчетов о результатах торговли, отправка SMS-сообщений

Трейдер не всегда имеет возможность и желание находиться часами перед торговым терминалом. Особенно, если торговая система в той или иной степени формализована и позволяет автоматически идентифицировать некоторые состояния рынка. В данной статье описано, как с помощью советника, индикатора или скрипта сформировать отчет о результатах торговли в виде html-файла и загрузить его по протоколу FTP на WWW-сервер, рассмотрен вопрос отправки уведомлений о торговых событиях на мобильный телефон в виде SMS-сообщений.

nicholish en
nicholish en
Комментарий к теме NumbersSeparator() function for Print big numbers
Late to the party... Here is a template function that can handle whatever number you throw at it. [MQL4/5] void OnStart () { double num = - 134523349345.23452345 ; Print (NumberToString(num, 4
Anthony Garot
Anthony Garot
Комментарий к теме NumbersSeparator() function for Print big numbers
Converted whroeder1's code to MQL5. I noted the max numbers that work for each function in the comments. Note: I'm actually switching over to nicholishen's code. // Adapted from
Automated-Trading
Automated-Trading
Experts: ChartBrowser
ChartBrowser : This is an utility which allows you to list all open charts, indicators, expert advisers, and scripts in alphabetic order, and switch between them. Author: Stanislav Korotky
Vladimir Karputov
Vladimir Karputov
Комментарий к теме Partial close tickets separately
Lorentzos Roussos : Does the Partial remaining order get a new ticket in MT5 as in MT4 ? Example: //+------------------------------------------------------------------+ //|
поделился кодом автора oschenker
 Simple ZZ Consolidation Zones
Продолжаем экспериментировать с индикатором Simple ZigZag. Небольшая модернизация позволяет индикатору находить и отмечать цветными прямоугольниками зоны ценовой консолидации.
поделился кодом автора Andre Enger
 Harmonic Pattern Finder V2
Индикатор для отображения существующих и формирующихся гармонических паттернов на графике.
Xử lý ZigZag
Vladimir Karputov
Vladimir Karputov
Комментарий к теме How to start with MQL5
An example of working with the ZigZag indicator Code: ZigZag Example.mq5 Pay attention to the extremum search algorithm: if the value in the indicator buffer is not equal to "0.0" and not equal to
How to start with MQL5