Mira cómo descargar robots gratis
¡Búscanos en Facebook!
Pon "Me gusta" y sigue las noticias
¿Es interesante este script?
Deje un enlace a él, ¡qué los demás también lo valoren!
¿Le ha gustado el script?
Evalúe su trabajo en el terminal MetaTrader 5
Librerías

Script Calling Library for MT4 build 600 and later - librería para MetaTrader 4

Visualizaciones:
12106
Ranking:
(27)
Publicado:
2014.02.27 14:15
Actualizado:
2016.11.22 07:32
¿Necesita un robot o indicador basado en este código? Solicítelo en la bolsa freelance Pasar a la bolsa

This is script calling library for MT4 build 600 and later.

This library is for callingl scripts from your indicator and expert advisors.

On earlier build of MT4, this can be achieved with this method.

Around build 509, message parameter may have been changed.

wParam is 0x11, and lParam is the ordinal of Navigator tree view, starts from 0 (the top script is 0).

This library includes DLL and a MQL class library.

Source:

Source is hosted on GitHub (CodeBase version might be outdated. Check here for new release).

If you are in trouble:

I'm welcome bug reports on GitHub Issue.

How to use:

  1. Add the following include line to your indicator or expert advisor

    #include <ScriptCaller.class.mqh>
  2. Add the following code to initialize/deinitialize class instance.

    ScriptCaller* g_scriptCaller = NULL;
    
    int OnInit()
    {
       g_scriptCaller = new ScriptCaller();
       return INIT_SUCCEEDED;
    }
    
    void OnDeinit(const int reason)
    {
       if (g_scriptCaller) {
           delete g_scriptCaller;
       }
    }
  3. Finally, put the following code to call script!

    g_scriptCaller.callScript("ScriptName"); // Do not end with .mq4
  4. If the script shows input dialog, and you want to close it automatically, call as follows.

    g_scriptCaller.callScript("ScriptName", true); // if the 2nd parameter is true, dialog will be closed automatically.


Samples:

Under MQL4\Indicators, 2 sample indicators, which calls scripts under MQL4\Scripts .

License:

This software is licensed under GNU General Public License Version 3.

Update history:

  • March 6, 2014: v0.1.1: Fix GitHub #1: Cannot load DLL on Windows XP and Wine
  • Feburary 27, 2014: v0.1.0: Initial release version
Indicator RDS2689SignalAlerts Indicator RDS2689SignalAlerts

This indicator will write the price of Pivot Point on the trading chart, ranging from Price Support 6 to Price Resistance 6. When prices change or pass one of Pivot Price level, the indicator will be given alerts.

EA SmartAssTrade EA SmartAssTrade

This EA just using a very simple formula, but according to my experience, the formula was accurate enough to make a profit.

MPCandle MPCandle

Combine Candle sticks and Market Profile indicator.

_MAvsMA_ema _MAvsMA_ema

EA Crossing of 2 MA