Nguyen Van Luong
Nguyen Van Luong
  • Information
6+ years
experience
1
products
1
demo versions
0
jobs
0
signals
0
subscribers
shared author's Sahil Bagdi code
 How to Disable/Enable Auto/Algo-Trading in both MT5 and MT4.
Just simple codes to Disable/Enable Auto/Algo-Trading in both MT5 and MT4. Of course, DLLs must be allowed, This cannot be done without DLLs
shared author's Agianto Simanullang code
Một ví dụ hay cần tham khảo.
 Price Horizontal Line Notifications
Get notifications when hit price level
MQLMySQL
Eugeniy Lugovoy
Eugeniy Lugovoy
Comment to topic Discussion of article "How to Access the MySQL Database from MQL5 (MQL4)"
lukins : Thanks! I will examine your solution in depth, it may be more stable than relying on MQL only. Just FYI there is a MQL4-only bridge I wrote a while ago for MT4 build 600+
shared author's Mladen Rakic code
Tham khảo EMA này để kết hợp với ADX
 Exponential moving average
Exponential moving average
shared author's Rosh code
Tham khảo ADX
 Smoothed ADX
There are a lot of smoothing algorithms. This indicator is a smoothing of standard ADX.
shared author's MetaQuotes code
Tham khảo
 Smoothed ADX by John Ehlers
There are many algorithms of smoothing. This given indicator is for smoothing of standard indicator ADX. The code was translated from Easy Language.
shared author's amrali code
 MultiSort - sorting algorithm
A sorter class to sort an array based on other arrays.
shared author's DMITRII PECHERITSA code
 introsort - array sorting algorithm
hybrid sorting algorithm that provides both fast average performance and (asymptotically) optimal worst-case performance
Vladimir Karputov
Vladimir Karputov
Comment to topic 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
Comment to topic 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
Comment to topic 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
Comment to topic 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
Comment to topic 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
Comment to topic 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
Comment to topic 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
Comment to topic 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 ( "-" +
shared author's Denis Zyatkevich article
Gửi file Report qua FTP
Creating and Publishing of Trade Reports and SMS Notification
Creating and Publishing of Trade Reports and SMS Notification

Traders don't always have ability and desire to seat at the trading terminal for hours. Especially, if trading system is more or less formalized and can automatically identify some of the market states. This article describes how to generate a report of trade results (using Expert Advisor, Indicator or Script) as HTML-file and upload it via FTP to WWW-server. We will also consider sending notification of trade events as SMS to mobile phone.

shared author's NickBixy code
Scanner
 Multi Pair Pivot Point Scanner Alerts 2.8
Scans multiple symbols looking for when the price crosses a pivot point or when xxPoints Near or bounce off pivot then it alerts the trader.
shared author's NickBixy code
Scanner
 Multi Pair Pivot Point Scanner Alerts 2.8
Scans multiple symbols looking for when the price crosses a pivot point or when xxPoints Near or bounce off pivot then it alerts the trader.
nicholish en
nicholish en
Comment to topic 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