Brilliant!
Thank you very much
Great work, thank you.
WHRoeder: Alphabetic Index of MQL4 Functions - MQL4 forum (2009.12.18 08:55) updated for Build 600+
Yes, very nicely done.
Sometimes I think that being-aware all the base functions is an important first step.
Thank you.
WHRoeder: Alphabetic Index of MQL4 Functions - MQL4 forum (2009.12.18 08:55) updated for Build 600+ | Additions |
Also not sure how long this page has been around , it certainly wasnt a while back, but the official list is here
According to original post, since December 2009. I have noticed that there are still some missing. Not from WH, but from the MQ info pages themselves. On setting up an indicator from the MQL4 metaeditor, the following code is generated.
//+------------------------------------------------------------------+ //| example code.mq4 | //| JD4 | //| https://www.mql5.com | //+------------------------------------------------------------------+ #property copyright "JD4" #property link "https://www.mql5.com" #property version "1.00" #property strict #property indicator_chart_window //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int OnInit() { //--- indicator buffers mapping //--- return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int OnCalculate(const int rates_total, const int prev_calculated, const datetime &time[], const double &open[], const double &high[], const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[]) { //--- //--- return value of prev_calculated for next call return(rates_total); } //+------------------------------------------------------------------+ //| Timer function | //+------------------------------------------------------------------+ void OnTimer() { //--- } //+------------------------------------------------------------------+ //| ChartEvent function | //+------------------------------------------------------------------+ void OnChartEvent(const int id, const long &lparam, const double &dparam, const string &sparam) { //--- } //+------------------------------------------------------------------+
The problem is, in the list on the page that ydrol linked, there is no "On..." anything, it goes directly from ObjectType to OrderClose.
List of MQL4 Functions - MQL4 Documentation didn't exist in my download of 03/24/15
GetMicrosecondCount | MQLSetInteger |
No, I know it wasn't your error WH, it is MQ's.
Great , very useful, congratulations!

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Alphabetic Index of MQL4 Functions - MQL4 forum (2009.12.18 08:55) updated for Build 600+