Nguyen Van Luong
Nguyen Van Luong
  • Informations
6+ années
expérience
3
produits
0
versions de démo
0
offres d’emploi
0
signaux
0
les abonnés
code de l'auteur amrali partagé
 MultiSort - sorting algorithm
A sorter class to sort an array based on other arrays.
code de l'auteur DMITRII PECHERITSA partagé
 introsort - array sorting algorithm
hybrid sorting algorithm that provides both fast average performance and (asymptotically) optimal worst-case performance
Vladimir Karputov
Vladimir Karputov
Commentaire sur le thème 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
Commentaire sur le thème 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
Commentaire sur le thème 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
Commentaire sur le thème 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
Commentaire sur le thème 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
Commentaire sur le thème 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
Commentaire sur le thème 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
Commentaire sur le thème 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 ( "-" +
article de l'auteur Denis Zyatkevich partagé
Gửi file Report qua FTP
Création et publication des rapports de trade et de notifications par SMS
Création et publication des rapports de trade et de notifications par SMS

Les traders ne sont toujours pas en mesure et n’ont pas envie de s'asseoir au terminal de trading pendant des heures. Surtout si le système trading est plus ou moins formalisé et peut identifier automatiquement certains états du marché. Cet article décrit comment générer un rapport des résultats du trade (à l'aide d'Expert Advisor, d'un indicateur ou d'un script) sous forme de fichier HTML et le télécharger via FTP sur le serveur WWW. Nous envisagerons également d'envoyer des notifications d'événements de trade sous forme de SMS sur un téléphone mobile.

code de l'auteur NickBixy partagé
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.
code de l'auteur NickBixy partagé
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
Commentaire sur le thème 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
Commentaire sur le thème 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
Commentaire sur le thème Partial close tickets separately
Lorentzos Roussos : Does the Partial remaining order get a new ticket in MT5 as in MT4 ? Example: //+------------------------------------------------------------------+ //|
code de l'auteur oschenker partagé
 Simple ZZ Consolidation Zones
More experiments with the Simple ZigZag indicator. A small upgrade allows the indicator to find and mark the price consolidation areas with colored rectangles.
code de l'auteur Andre Enger partagé
 Harmonic Pattern Finder V2
Indicator to display existent and emerging harmonic chart patterns.
Xử lý ZigZag
Vladimir Karputov
Vladimir Karputov
Commentaire sur le thème 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