Nguyen Van Luong
Nguyen Van Luong
  • Informazioni
6+ anni
esperienza
1
prodotti
1
versioni demo
0
lavori
0
segnali
0
iscritti
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
Commento all'argomento 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
Commento all'argomento 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
Commento all'argomento 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
Commento all'argomento 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
Commento all'argomento 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 ( "-" +
codice condiviso dell'autore Denis Zyatkevich
Gửi file Report qua FTP
Creazione e Pubblicazione di Report di Trading e Notifiche SMS
Creazione e Pubblicazione di Report di Trading e Notifiche SMS

I trader non hanno sempre la capacità e il desiderio di sedersi al terminale di trading per ore. Soprattutto se il sistema di trading è più o meno formalizzato e può identificare automaticamente alcuni degli stati del mercato. Questo articolo descrive come generare un report dei risultati di trading (utilizzando Expert Advisor, Indicator o Script) come file HTML e caricarlo tramite FTP sul server WWW. Prenderemo in considerazione anche l'invio di notifiche di eventi commerciali come SMS al telefono cellulare.

codice NickBixy condiviso dell'autore
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.
codice NickBixy condiviso dell'autore
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
Commento all'argomento 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
Commento all'argomento 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
Commento all'argomento Partial close tickets separately
Lorentzos Roussos : Does the Partial remaining order get a new ticket in MT5 as in MT4 ? Example: //+------------------------------------------------------------------+ //|
codice oschenker condiviso dell'autore
 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.
codice Andre Enger condiviso dell'autore
 Harmonic Pattern Finder V2
Indicator to display existent and emerging harmonic chart patterns.
Xử lý ZigZag
Vladimir Karputov
Vladimir Karputov
Commento all'argomento 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
codice Vladimir Pastushak condiviso dell'autore
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
Commento all'argomento 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
Commento all'argomento 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
codice condiviso dell'autore Dmitry Fedoseev
Đọc để hiểu về Time()
Forum sulla programmazione MQL5 Ora
Forum sulla programmazione MQL5 Ora

L'articolo si concentra sulle funzioni MQL5 standard per lavorare con il tempo, nonché sulle tecniche di programmazione e sulle funzioni praticamente utili per lavorare con il tempo richiesto durante la creazione di Expert Advisor e indicatori. Particolare attenzione è rivolta alla teoria generale della misurazione del tempo. Questo articolo dovrebbe essere di interesse principalmente per i programmatori MQL5 alle prime armi.

leoa451
leoa451
Commento all'argomento How to check Market Open/Closed in MT5 ?
The method I use: bool Status() { trade.OrderDelete( 0 ); switch (trade.ResultRetcode()) { case 10017 : return