無料でロボットをダウンロードする方法を見る
Facebook上で私たちを見つけてください。
私たちのファンページに参加してください
興味深いスクリプト?
それではリンクにそれを投稿してください。-
他の人にそれを評価してもらいます
記事を気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
ライブラリ

Script Calling Library for MT4 build 600 and later - MetaTrader 4のためのライブラリ

ビュー:
12107
評価:
(27)
パブリッシュ済み:
2014.02.27 14:15
アップデート済み:
2016.11.22 07:32
このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動

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