Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Telegram!
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Bibliotheken

Script Calling Library for MT4 build 600 and later - Bibliothek für den MetaTrader 4

Ansichten:
12112
Rating:
(27)
Veröffentlicht:
2014.02.27 14:15
Aktualisiert:
2016.11.22 07:32
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance

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