Nguyen Van Luong
Nguyen Van Luong
  • Informations
6+ années
expérience
1
produits
1
versions de démo
0
offres d’emploi
0
signaux
0
les abonnés
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
code de l'auteur Vladimir Pastushak partagé
Tương tự Link Ticker trong AmiBroker
 VR Watch List and Linker Lite MT5
Synchronous change of a trading instrument in all charts
Bắt sự kiện SL và TP để gửi thông báo qua các kênh thông tin.
Vladimir Karputov
Vladimir Karputov
Commentaire sur le thème How to start with MQL5
Example: tracking the triggering of Stop Loss or Take Profit Code: SL TP Triggered.mq5 //+------------------------------------------------------------------+ //|
Cộng thêm nhiều ngày vào ngày hiện tại
Fernando Carreiro
Fernando Carreiro
Commentaire sur le thème add day to datetime variable
You should consult the documentation when in doubt: https://docs.mql4.com/basis/types/integer/datetime Datetime Type The datetime type is intended for storing the date and time as the number of
article de l'auteur Dmitry Fedoseev partagé
Đọc để hiểu về Time()
Les bases de la programmation MQL5 : Temps
Les bases de la programmation MQL5 : Temps

L’article se concentre sur les fonctions MQL5 standard pour travailler avec le temps, ainsi que sur les techniques de programmation et les fonctions pratiques utiles pour travailler avec le temps nécessaire à la création d’Expert Advisors et d’indicateurs. Une attention particulière est accordée à la théorie générale de la mesure du temps. Cet article devrait intéresser principalement les programmeurs MQL5 novices.

leoa451
leoa451
Commentaire sur le thème How to check Market Open/Closed in MT5 ?
The method I use: bool Status() { trade.OrderDelete( 0 ); switch (trade.ResultRetcode()) { case 10017 : return
Kiểm tra xem thị trường có mở cửa hay không?
MassimoMondo
MassimoMondo
Commentaire sur le thème Market Open or Close - how can I find it?
Gustavo Hennemann : Hi guys, There is no MarketInfo() in MT5. Also, this kind of solution works for holidays and days off? Thanks Hello, I found a simple solution with OnTimer routine. Let's see the