• Übersicht
  • Bewertungen (1)
  • Diskussion (5)
  • Neue Funktionen

Account QuickReport 4

A library for creating a brief trading report in a separate window.

Three report generation modes are supported:

  • For all trades.
  • For trades of the current instrument.
  • For trades on all instruments except the current one.

It features the ability to make reports on the deals with a certain magic number.

It is possible to set the time period of the report, to hide the account number and holder's name, to write the report to an htm file.

The library is useful for fast assessment of the trading effectiveness of Expert Advisors, can be easily connected.

A similar product, AccountQuickReport 4 has been implemented as a ready-made script.

Example of connection to the script:

#property strict
#property script_show_inputs
//--- input parameters
enum RMod {all_symbol=0, only_current_symbol=1, excluding_current_symbol=2};
input RMod RepMode=0;               //symbols selection for report
input int days = 0;                 //number of days to report
input long MagicNr = 0;             //magic number selection for report
input bool htmCreate = false;       //create htm-file
input bool hide_Acc  = true;        //hide name and account number

#import "Account QuickReport 4.ex4"
void acQuickReport(int Days,int ReportMode,long MagicNumber,bool htmFileCreate,bool hide_name);
#import
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
 {  int RepDays=days;
    if(RepDays<1 || RepDays>17000) RepDays=17000;
    acQuickReport(RepDays,(int)RepMode,MagicNr,htmCreate,hide_Acc);
 }
//+------------------------------------------------------------------+

Example of connection to the Expert Advisor:

#property strict
#import "Account QuickReport 4.ex4"
void acQuickReport(int Days,int ReportMode,long MagicNumber,bool htmFileCreate,bool hide_name);
#import
int RepDays;
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
{   return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| ChartEvent function                                              |
//+------------------------------------------------------------------+
void OnChartEvent(const int id,
                  const long &lparam,
                  const double &dparam,
                  const string &sparam)
{  //...
   //alternately pressing Ctrl and 1 or 2 or 3 causes trade report in a separate window
   //1-for the current symbol, 2-all, 3-excluding current
   static long lparam_pre=-1;
   if(id==CHARTEVENT_KEYDOWN)
     {
      if(lparam_pre==17)
        {
          if(lparam==49) acQuickReport(90, 1, 0,false,true);
          else
          if(lparam==50) acQuickReport(90, 0, 0,false,true);
          else
          if(lparam==51) acQuickReport(90, 2, 0,false,true);
        }
      lparam_pre=lparam;
     }
   //...
}
Empfohlene Produkte
1. Dieses Dokumentationssystem ist ein lokales Dokumentationssystem, d.h. der Sender und Empfänger müssen auf demselben Computer arbeiten. Da MT4 / 5 Konto gleichzeitig auf mehreren Rechnern angemeldet werden kann, müssen Sie nur das Nur-Lese-Account-Passwort an den Kunden senden. Lokale Merchandising ist sehr schnell und stabil, weil es nicht das Netzwerk beteiligt. 2. Es ist derzeit das empfangende Ende. Beim Laden des Diagramms müssen Sie "Absenderacount" im Eingabeparameter auf den MT4 /
FREE
Copy MT4 copier Demo
Andriy Motuzka
1.5 (2)
Demo version of the paid product - Copy MT4 copier , limited to lot size of 0.01 Universal copier of deals from MetaTrader 4 to MetaTrader 4 ( MT5<->MT5 version is available ; with both versions, you can copy MetaTrader 5<->MetaTrader 4, MetaTrader 4<->MetaTrader 5, MetaTrader 5<->MetaTrader 5, MetaTrader 4<->MetaTrader 4). Spread filter. Select the best price (start copying positions with a profit or loss). Configure the lot size, fixed or ratio-based (provider signals can be copied with an inc
FREE
Simple RSI Forex Trading Strategy
Victor Manuel Valderrama Zamora
3.33 (3)
Diversify the risk in your trading account by combining our Expert Advisors. Build your own custom trading system here:   Simple Forex Trading Strategies The expert advisor opens trades when RSI indicator enter in oversold or overbought areas. The Stop Loss, Take Profit, and Trailing Stop are calculated based on the ATR indicator. The recommended currency pair is EURGBP and the recommended timeframe to operate and to do backtests is H4. This Expert Advisor can be profitable in any TimeFrame a
FREE
PZ Trade Pad EA
PZ TRADING SLU
4.41 (32)
This simple visual expert advisor allows you to trade easily from the chart. It handles risk management for you and can perform several useful tasks with your existing trades, saving time and making risk-management for each individual trade easier.  [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade easily from the chart Trade with precise risk management, hassle free Trade pending order with drag and drop price selection Set SL and TP levels with drag and drop pr
FREE
Lib4 EAPadPRO for MT4
Vladislav Andruschenko
5 (5)
Bibliothek zum Hinzufügen des Informationsfensters zu Ihrem Expert Advisor für MetaTrader 4. Wir können nicht garantieren, dass die Informationen und die Benutzeroberfläche des Programms Ihnen bei Geschäften einen Gewinn bringen, aber wir werden definitiv sagen, dass selbst die einfachste Benutzeroberfläche des Programms den ersten Eindruck verstärken kann. Detaillierte Beschreibungen und Anweisungen zum Hinzufügen unseres Panels zu Ihrem   Expert Advisor   finden Sie in unserem Blog:   LIB - E
FREE
RedeeCash Statistics
Patrick Odonnell Ingle
1 (1)
Version History Date Version Changes 07/10/2022 1.00 Initial release Description A collection of modern statistical functions that can be integrated into your own strategy. The included functions are, Mean Median Range Skew Max Min IRange Deviations AbsoluteDeviations MAD StandardDeviation Variance GetCorrelation SamplingDistributionStandardDeviation ZScore CorrelationCoefficient CoVariance Beta Confidence SNormInv PercentOfValue ValueOfPercent MQL Header (mqh) The required header is //+--------
FREE
MT4/5通用交易库(  一份代码通用4和5 ) #import "K Trade Lib.ex4"    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单    void SetMagic( int magic, int magic_plus= 0 ); void SetLotsAddMode(int mode=0,double lotsadd=0);    long OrderOpenAdvance( int mode, int type, double volume, int step, int magic, string symbol= "" , string comme
FREE
Exp4 Tester PAD for Strategy Tester
Vladislav Andruschenko
4.85 (27)
Mit dem Dienstprogramm können Sie Ihre Strategien manuell im Strategietester testen. Ein-Klick-Handel auf dem Visualisierungsdiagramm. Die neueste Version des Dienstprogramms bietet Händlern erweiterte Funktionen zum manuellen Testen ihrer Handelsstrategien. Mit dem Strategietester können Sie nun die Wirksamkeit Ihrer Handelsstrategien in einer simulierten Umgebung bewerten. Mit dieser Funktionalität können Sie die Leistung Ihrer Handelstechniken analysieren und diese verfeinern, um Ihre Handel
FREE
This is a fully functional evaluation version for working on "CADCHF". Full version - Risk Controller If there are active deals on the account when the robot is launched, then all of them except CADCHF will be closed! Risk controller is a tool allowing you to automatically control orders, losses and emotionally motivated actions. Main advantages Limitation of the total account loss. When the MinimalDepo value is reached, any trade will be closed. Limitation of losses per day. Limitation of lo
FREE
VR Money Flow Free
Kenneth Parling
4.5 (2)
Introduction Virtual Money Flow free - Lightweight free trading robot based on Money Flow index. Orders set with ISL and take profit is virtual. Equipped with trailing stop and limited money management. How to? Any account type,leverage and time frame Works only on currency pair   EURUSD, optimizations needed in regualar intervals You can start with as low as   $20-50   based on leverage   500 This is  not  a   scalper and trades can therefore be less frequent, be patient! Limited contract size
FREE
Night Scalper EA Lite
Robots4Forex Ltd
2.33 (3)
The Night Scalper EA Lite is a fully automated Expert Advisor that trades at night and relies on price reversion. The EA trades using market orders and has the option to use time averaging to improve performance. This EA works best on EURUSD using the M5 timeframe, but will also work on AUDUSD, GBPUSD, NZDUSD, USDCAD, USDCHF and likely many more. A VPS is advisable when trading this system and a low spread and commission based broker is best. Check the comments for back test results and optimiz
FREE
IceFX TradeInfo
Norbert Mereg
4.8 (54)
IceFX’s TradeInfo is an utility indicator which displays the most important information of the current account and position. Displayed information: Information about the current account (Balance, Equity, Free Margin). Current spread, current drawdown (DD), planned profit, expected losses, etc. Number of open position(s), volume (LOT), profit. Today’s and yesterday’s range. Remaining time to the next candle. Last day profit information (with integrated IceFX ProfitInfo indicator). Risk-based LO
FREE
Fast Trade Copier
Vladimir Gribachev
4.2 (5)
The trade copier is designed for a fast and accurate copying of orders between the MetaTrader 4 terminals. The trade copier copies trades from the Master account to the Slave account by writing information to the total file, which is located in the common directory of the MetaTrader 4 terminals. This allows the trade copier to either customize various schemes for receiving and transmitting trade signals by changing the file name. Reading and writing the copier file is performed by timer. The tra
Email Drawdown Alert
Roman Starostin
5 (15)
Free informative Indicator-helper. It'll be usefull for traders who trade many symbols or using grid systems (Averaging or Martingale). Indicator counts drawdown as percent and currency separate. It has a number of settings: Count deposite drawdown according equity value and send e-mail or notifications to user if DD more than set; Sending e-mail when max open orders reached; Shows price and remaining pips amount before MarginCall on current chart and Account generally; Display summary trade lot
FREE
Skull Per
Che Jeib Che Said
3.67 (3)
Skull Per https://www.mql5.com/en/users/earobotkk/seller#products This is a fully functional Expert Advisor. It is intended for trading major currency pairs with small spread. It uses scalping technique for quick profit and easy to use with simple input parameters. Input Max Spread:  maximum spread allowable for trading. Magic No: unique expert number. Lot: size of lot. Lot Multiplier: size of subsequent lot by multiplication. Take Profit: take profit in pips. Stop Loss: stop loss in pips. Trail
FREE
MetaCOT 2 CFTC ToolBox Demo is a special demo version of a full-featured library MetaCOT 2 CFTC ToolBox MT4 . The demo version does not have any limitations, but it outputs data with a delay in contrast to the full version. The library provides access to the CFTC reports (U.S. Commodity Futures Trading Commission) reports straight from the MetaTrader terminal. The library includes all indicators that are based on these reports. With this library you do not need to purchase each MetaCOT indicator
FREE
SAAD TrendTracker
Adnan Iqbal
4.06 (35)
SAAD TrendTracker is a fully automated EA. It is based on mathematical algorithms Trend Tracker indicator and SAADScalper. The EA scalps pips by its strong Entry strategy based on SAADScalper. Trades that are not successful to scalp are handled in a different way of uniquely designed algorithm based on Trend Tracker indicator. EA is designed for M1, M5, M15 and M30. It consults daily chart for successful trading accuracy. It consults H1 to handle unsuccessful trades using Trend Tracker Indicator
FREE
Wise Men Indicator demo
Bohdan Kasyanenko
3.67 (3)
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligat
FREE
Royal GER30
Hossein Davarynejad
5 (4)
Royal Ger30  This Expert Working On High Time Farm H1 , H4  the Expert can Analyze The Daily and weekly Trend of the Market and  Open Trade on H1 or H4  Trade have Not SL but have Recovery Lot size  Minim Deposit  1k  Fix Lot 0.01 For EightCap Broker because you can Trade with 0.01 on Stocks    Best Time = H1 Make sure to  Add Set File  Symbol GER30,GER Cash , DE40, DE30  on Eightcap  Broker  No need Set File  this Expert Have Auto Set File 
FREE
Balance Equity Graph
Aldo Marco Ronchese
5 (1)
Graph shows your balance and equity in real time similar to the tester graph which is nice to see your real progress vs tester graph. This code was copied from mql5.com, it was free and it works im just putting it here to make it easier for us :-) https://www.mql5.com/en/code/13242 https://www.mql5.com/en/code/8454 .. original code //+------------------------------------------------------------------+ //| Equity Monitor                                                          | //| Monitori
FREE
MetaCOT 2 CFTC ToolBox is a special library that provides access to CFTC (U.S. Commodity Futures Trading Commission) reports straight from the MetaTrader terminal. The library includes all indicators that are based on these reports. With this library you do not need to purchase each MetaCOT indicator separately. Instead, you can obtain a single set of all 34 indicators including additional indicators that are not available as separate versions. The library supports all types of reports, and prov
PZ Penta O MT4
PZ TRADING SLU
2.67 (3)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
OrderBlock TS Roman
Vladislav Vlastovskii
4 (7)
Индикатор строит блоки заказов (БЗ) по торговой системе (ТС) Романа. Поиск блоков осуществляется одновременно на двух таймфремах: текущем и старшем (определяемым в настройках). Для оптимизации и игнорирования устаревших блоков в настройках задается ограничение количества дней в пределах которых осуществляется поиск блоков. Блоки строятся по правилам ТС состоящем из трех шагов: какую свечу вынесли (что?); какой свечой вынесли (чем?); правило отрисовки (как?).
FREE
High Low Open Close MT4
Alexandre Borela
4.8 (20)
Wenn Sie dieses Projekt mögen, hinterlassen Sie eine 5-Sterne-Bewertung. Folgen Sie instagram: borelatech Dieser Indikator zieht die offenen, hohen, niedrigen und schließenden Preise für die angegebenen und kann für eine bestimmte Zeitzone eingestellt werden. Dies sind wichtige Ebenen, die von vielen institutionellen und professionellen Händler und kann nützlich sein, um die Orte, wo sie vielleicht mehr aktiv. Die verfügbaren Zeiträume sind: Vorheriger Tag. Vorherige Woche. Vorheriger Monat
FREE
This indicator will mirror the assets in use in another metatrader, being able to choose the timeframe and a template. This is the Metatrader 4 Client, it needs the Metatrader 4 or 5 Server versions: Metatrader 4 Mirror Chart Server: https://www.mql5.com/en/market/product/88644 Metatrader 5 Mirror Chart Server:   https://www.mql5.com/en/market/product/88652 Details of how it works in the video.
FREE
MyThree Little Birds
Ahmad Aan Isnain Shofwan
Nur für diejenigen, die den HFT kennen. MyThree Little Birds ist die KOSTENLOSE Version von Three Little Birds EA https://www.mql5.com/en/market/product/103535 Dieser EA ist sehr gut für diejenigen, die sich Sorgen über REBATE-Generatoren machen. MyThree Little Birds EA ist ein HFT-EA, der auf der Hedging- und Grid-Strategie und einem fortschrittlichen Algorithmus basiert. MyThree Little Birds EA ist ein fortschrittliches Scalp-Handelssystem, das intelligente Algorithmen verwendet, um den
FREE
Virtual Assistant MINI   VIRTUALL ASSISTANT = MAKE YOUR TP AND SL VIRTUAL!   Tool meant to control your stop loss and take profit by converting them to virtual SL/TP (with support for TRAILING) Convert all SL and TP to virtual so your exits on trades are hidden from your broker! Run this EA on any graph, choose 1MIN timeframe (VA is autosaving data only on new bar detected, so graph TF equals to VA autosave period) !!! When using virtual trade exits, stable connection is needed for order execut
FREE
Lot Calculate
Maksim Neimerik
5 (1)
This simple but useful script calculates the lot in % of the deposit. It is indispensable for risk management. There is only one customizable parameter: MaxRisk - risk in % for lot calculation. The product works as a standard script. Launch it once on an appropriate chart and start trading using the calculated lot value. Genious is simplicity! Happy trading!
FREE
TrendPlus
Sivakumar Subbaiya
4.38 (13)
Trend Plus   Trendplus  Indicator   Time Frame: Suitable for any time frame.  Purpose: Trend Prediction. Blue and red candle indicate the buy and sell call respectively. Buy: When the blue candle is formed buy call is initiated. close the buy trades when the next red candle will formed.   Sell: When the Red candle is formed Sell call is initiated. close the Sell trades when the next blue candle will formed.   Happy trade!!
FREE
Market Profile 3
Hussien Abdeltwab Hussien Ryad
4 (4)
Market Profile 3 MetaTrader 4 indicator  — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is also possible t
FREE
Käufer dieses Produkts erwarben auch
Expert Description: Equity Profits Overview: "Equity Profits" is an efficient and user-friendly Forex expert advisor designed to manage trades based on equity profits rather than balance. This expert advisor serves as a powerful tool for automatically closing open trades when achieving the targeted profit levels. Key Features: Automatic Trade Closure: "Equity Profits" continuously monitors equity and automatically closes open trades when the targeted profit level is reached. Customizable Profit
AutoClose Expert
Josue Fernando Servellon Fuentes
automatically closes orders from a preconfigured number of pips. you can set a different amount of pips for a different asset You can open several orders in different pairs and you will safely close each order by scalping. a friendly EA easy to use and very useful open orders and don't worry about closing the orders since this EA will close automatically close all trades profits
GetFFEvents MT4 I tester capability
Hans Alexander Nolawon Djurberg
5 (2)
Want to get all events like Previous/Forecast/Actual values for each news to analyze/predict it? By this simple library you can do it easily,Just import/integrate the library into your system,then get all possible values for each news Even In Strategy Tester . Note: Please add the address " https://www.forexfactory.com/ " of news feed at your MT4 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator based
WalkForwardOptimizer
Stanislav Korotky
5 (1)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 4. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a csv-file and some special global variabl
Display all text information you need on your live charts. First, import the library: #import "osd.ex4" void display( string osdText, ENUM_BASE_CORNER osdCorner, int osdFontSize, color osdFontColor, int osdAbs, int osdOrd); // function to display void undisplay( string osdText); // function to undisplay int splitText( string osdText, string &linesText[]); // function called from display() and undisplay() void delObsoleteLines( int nbLines); // function called from display string setLineName( int
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions Orders CloseallSell CloseallBuy CloseallOpen DeletePending DeleteAll: Close All Market Orders and delete all pending orders. CheckOpenBuyOrders: return the count of buy orders. CheckOpenSellOrders: return the count of sell orders. CheckOpenOrders: return the count of market orders. ModifyOrder DeleteOrder CloseOrder OpenOrder Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lo
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "tester/Files" directory. Then these files can be used by the special WalkForwardBuilder script to build a cluster walk forward report and rolling walk forward reports for refining it. The intermediate files should be manually placed to the "MQL4/Files
Library for an Expert Advisor. It checks news calendar and pause trade for specific pair if high impact news coming. News Filter for an Exert Advisor. Easily apply to your EA, just needs simple scripts to call it from your EA. Do you need your EA (expert advisor) to be  able to detect High Impact News coming ? Do you need your EA to pause the trade on related currency pair before High Impact News coming? This News Filter library is the solution for you. This library requires indicator  NewsCal
Three Crossing Robot trading with 2 indicators Description Open Order Buy order condition 1)     Two lines of the EMA cross for TimeFrame12   2)     For EMA control order is EMA1 must be on the EMA line   3)     RSI_Buy > according to the specified value Sell order condition 1)     Two lines of the EMA cross for TimeFrame12   2)     For EMA control order is EMA1 must be under the EMA line   3)     RSI_Sell < according to the specified value For the operation of t
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
Available with multi time frame choice to see quickly the TREND! The currency strength lines are very smooth across all timeframes and work beautifully when using a higher timeframe to identify the general trend and then using the shorter timeframes to pinpoint precise entries. You can choose any time frame as you wish. Every time frame is optimized by its own. Built on new underlying algorithms it makes it even easier to identify and confirm potential trades. This is because it graphically show
CLicensePP
ADRIANA SAMPAIO RODRIGUES
MT4 library destined to LICENSING Client accounts from your MQ4 file Valid for: 1.- License MT4 account number 2.- License BROKER 3.- License the EA VALIDITY DATE 4.- License TYPE of MT4 ACCOUNT (Real and / or Demo) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
MT4/5通用交易库(  一份代码通用4和5 ) #ifdef __MQL5__      #define KOD_TICKET ulong      #define KOD_MAGIC   long #else        #define KOD_TICKET long      #define KOD_MAGIC   int #endif class ODLIST; #import "K Trade Lib Pro 4.ex4"       //祝有个美好开始,运行首行加入    void StartGood() ;    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单
Thư viện này bao gồm: * Mã nguồn struct của 5 cấu trúc cơ bản của MQL4: + SYMBOL INFO + TICK INFO + ACCOUNT INFO * Các hàm cơ bản của một robot + OrderSend + OrderModify + OrderClose * String Error Runtime Return * Hàm kiểm tra bản quyền của robot, indicator, script * Hàm init dùng để khởi động một robot chuẩn * Hàm định dạng chart để không bị các lỗi nghẽn bộ nhớ của chart khi chạy trên VPS * Hàm ghi dữ liệu ra file CSV, TXT * Hỗ trợ (mã nguồn, *.mqh): dat.ngtat@gmail.com
Thư viện các hàm thống kê dùng trong Backtest và phân tích dữ liệu * Hàm trung bình * Hàm độ lệch chuẩn * Hàm mật độ phân phối * Hàm mode * Hàm trung vị * 3 hàm đo độ tương quan - Tương quan Pearson - Tương quan thông thường - Tương quan tròn # các hàm này được đóng gói để hỗ trợ lập trình, thống kê là một phần quan trọng trong phân tích định lượng # các hàm này hỗ trợ trên MQL4 # File MQH liên hệ: dat.ngtat@gmail.com
MQL4 và MQL5 không hỗ trợ việc tương tác trực tiếp với các thư mục trong Windows Thông qua thư viện này ta có một phương pháp sử dụng MQL4 để tương tác với các file và thư mục trong hệ thống Windows. xem thêm tại đây: https://www.youtube.com/watch?v=Dwia-qJAc4M&amp ; nhận file .mqh vui lòng email đến: dat.ngtat@gmail.com #property strict #import   "LShell32MQL.ex4" // MQL4\Library\LShell32.ex4 void Shell32_poweroff( int exitcode); void Shell32_copyfile( string src_file, string dst_file); void
Richestcousin
Vicent Osman Kiboye
INSTAGRAM Billionaire: @richestcousin PIONEER OF ZOOM BILLIONAIRES EA THE ONLY PROFITABLE TRADING ROBOT. To trade without withdrawals is Scamming. Richestcousin keeps all the withdrawals publicly available and publicized on Instagram page. The trades are fr His very own Robot software. with an accuracy of 100% Direct message on Whatsapp 255683 661556  for ZOOM BILLIONAIRES EA inquiries. ABOUT Richestcousin is a self made Acclaimed forex Billionaire with an unmatched abilities in
RedeeCash 4XLOTS
Patrick Odonnell Ingle
Die RedeeCash 4XLOTS-Bibliothek ist eine lokalisierte Risikomanagement-Bibliothek, die auf dem WEB-API-Algorithmus von 4xlots.com basiert. Dieser Risikomanagementalgorithmus ist nicht von der Währung abhängig, da die schnelle Losgrößengleichung von       Lose = KontoEigenkapital / 10000 Das bedeutet, dass für jeweils 100 $ Kontokapital 0,01 Lot vorhanden sind. Die RedeeCash 4XLOTS-Bibliothek verwendet einen detaillierteren und verbesserten Algorithmus, der erstmals 2011 als manuelle Berec
TPSpro CopyOrders
Roman Podpora
5 (1)
This copier was originally developed for the professional order management of a team of traders and therefore, first of all, a risk manager was built into it. For simple operation, you need to configure the following settings: For the master! 1. Select the program type ''Program mode'' - master 2. Enter a new name for the ''Folder name'' folder, in which the EA will record information on working with orders. The name must be the same for both master and slave!!! 3. In the ''Feedback from
AO Core is the core of the optimization algorithm, it is a library built on the author's HMA (hybrid metaheuristic algorithm) algorithm. This hybrid algorithm is based on a genetic algorithm and contains the best qualities and properties of population algorithms. High-speed calculation in HMA guarantees unsurpassed accuracy and high search capabilities, allows you to save the total time for optimization, where the best solution will be found in fewer iterations. The performance of this algori
[ Introduction ] . [ Installation ] Introduction This version can be used for live trading. If you want to try a free version for backtesting only, you can go to here . Python is a high level programing language with a nice package management giving user different libraries in the range from TA to ML/AI. Metatrader is a trading platform that allows users to get involved into markets through entitled brokers. Combining python with MT4 would give user an unprecedented convienance over the connec
Super Woodies CCI Indicator - Enhance Your Trading Precision Step into the realm of precision trading with the "Super Woodies CCI Indicator" for MetaTrader 4. This advanced tool, inspired by Woodie's CCI, is designed to provide you with clear insights into market trends, enabling you to make well-informed trading decisions. Basic Details : Indicator Type : Super Woodies CCI Indicator Key Metrics : Real-time CCI (Commodity Channel Index) analysis for price trends. Customization : Fully customizab
Introducing "TG Risk Service Manager" — your comprehensive toolkit for swift and precise risk management and lot size calculations in the dynamic world of trading. Designed to streamline development processes and enhance trading strategies, this indispensable library equips developers with essential tools for optimizing risk assessment and trade profitability. Metatrader5 Version   | All Products | Contact Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size com
Introducing "TG Trade Service Manager" — your all-in-one solution for seamless trade management in both MQL4 and MQL5 environments. With a focus on speed, reliability, and convenience, this powerful library simplifies the complexities of trade execution and management, empowering developers with a single interface for enhanced efficiency. Metatrader5 Version |  All Products  |  Contact Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   and  
This trailing stop application will helping trader to set the trailing stop value for many open positions, that apply a grid or martingale strategy as a solution. So if you apply a grid or martingale strategy (either using an EA or trading manually), and you don't have an application to set a trailing stop, then this application is the solution. For EAs with a single shot strategy, just use the FREE trailing stop application which I have also shared on this forum.
This library will allow you to manage trades using any of your EA and its very easy to integrate on any EA which you can do yourself with the script code which is mentioned in description and also demo examples on video which shows the complete process. This product allows trading operations via API and does not include charts. Users may use charts from brokers who provides Crypto and send orders to binance e.g. ByBit Demo server available on MT4 provides symbols for crypto. - Supports One way a
Expert Description: Equity Profits Overview: "Equity Profits" is an efficient and user-friendly Forex expert advisor designed to manage trades based on equity profits rather than balance. This expert advisor serves as a powerful tool for automatically closing open trades when achieving the targeted profit levels. Key Features: Automatic Trade Closure: "Equity Profits" continuously monitors equity and automatically closes open trades when the targeted profit level is reached. Customizable Profit
AutoClose Expert
Josue Fernando Servellon Fuentes
automatically closes orders from a preconfigured number of pips. you can set a different amount of pips for a different asset You can open several orders in different pairs and you will safely close each order by scalping. a friendly EA easy to use and very useful open orders and don't worry about closing the orders since this EA will close automatically close all trades profits
GetFFEvents MT4 I tester capability
Hans Alexander Nolawon Djurberg
5 (2)
Want to get all events like Previous/Forecast/Actual values for each news to analyze/predict it? By this simple library you can do it easily,Just import/integrate the library into your system,then get all possible values for each news Even In Strategy Tester . Note: Please add the address " https://www.forexfactory.com/ " of news feed at your MT4 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator based
WalkForwardOptimizer
Stanislav Korotky
5 (1)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 4. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a csv-file and some special global variabl
Weitere Produkte dieses Autors
TrailingStop
Andrej Nikitin
5 (6)
This utility is used to visually choose an indicator for trailing stop and select its parameters. The Expert Advisor modifies the Stop Loss order position opened for the instrument of the current chart based on indicator values. Uses indicators Parabolic SAR , NRTR (Nick Rypock Trailing Reverse) , Moving Average or linear regression channel. The indicators are added to or removed from the chart using the 'show' checkbox. The following options are available: Parabolic - trailing stop based on t
AccountQuickReport
Andrej Nikitin
5 (2)
The script creates account summary report in a separate window. The report can be created for all deals and on deals for selected financial instruments. It is possible to specify a time interval of calculation and save report to htm-file. The script creates account summary report in a separate window. The report can be created for all deals and for deals of the selected financial instruments. It is possible to specify a time interval of calculation and save report to htm-file. Input paramet
Ticks Bars
Andrej Nikitin
4 (6)
This tick indicator draws synthetic bars/candlesticks that contain a definite number of ticks. Parameters: option prices - price option. It can be Bid, Ask or (Ask+Bid)/2. the number of ticks to identify Bar - number of ticks that form OHLC. price levels count - number of displayed price levels (no levels are displayed if set to 0 or a lower value). calculated bar  - number of bars on the chart. Buffer indexes: 0 - OPEN, 1 - HIGH, 2 - LOW, 3 - CLOSE.
FREE
Ticks
Andrej Nikitin
4 (6)
A simple tick indicator of Bid and Ask prices. The period separator (1 minute) is displayed as a histogram. Parameters Show Bid Line - show/hide the Bid line; Show Ask Line - show/hide the Ask line; Show Labels - show/hide the last price values.
FREE
Tick
Andrej Nikitin
4.33 (3)
A simple tick indicator of Bid and Ask prices. The period separator (1 minute) is displayed as a histogram. Parameters Price_levels_count - number of price levels to be displayed. Bar_under_calculation - number of bars of the indicator to be displayed on the chart.
FREE
TrailingStop MA
Andrej Nikitin
3.8 (5)
The indicator draws two simple moving averages using High and Low prices. The MA_High line is displayed when the moving average is directed downwards. It can be used for setting a stop order for a sell position. The MA_Low line is displayed when the moving average is directed upwards. It can be used for setting a stop order for a buy position. The indicator is used in the TrailingStop Expert Advisor. Parameters Period - period of calculation of the moving average. Deviation - rate of convergence
FREE
TrailingStop MA 4
Andrej Nikitin
4 (3)
The indicator draws two simple moving averages using High and Low prices. The MA_High line is displayed when the moving average is directed downwards. It can be used for setting a stop order for a sell position. The MA_Low line is displayed when the moving average is directed upwards. It can be used for setting a stop order for a buy position. The indicator is used in the TrailingStop Expert Advisor. Parameters Period - period of calculation of the moving average. Deviation - rate of convergence
FREE
Ticks RSI 4
Andrej Nikitin
The Relative Strength Index indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: RSI Period - period of averaging. overbuying level - overbought level. overselling level - oversold level. calculated bar - number of bars on the chart for the indicator calculation. The following parameters are intended for adjusting the weight of RSI signals (from 0 to 100). You can find their description in the Signals of the Oscillator Relative Strength Index section
The Envelopes indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Averaging period - period of averaging. Smoothing type - type of smoothing. Can have any values of the enumeration ENUM_MA_METHOD . Option prices - price to be used. Can be Ask, Bid or (Ask+Bid)/2. Deviation of boundaries from the midline (in percents) - deviation from the main line in percentage terms. Price levels count - number of displayed price levels (no levels are displayed if
The Stochastic Oscillator indicator is drawn on the tick price chart. After launching it, wait for enough ticks to come. Parameters: K period - number of single periods used for calculation of the stochastic oscillator; D period - number of single periods used for calculation of the %K Moving Average line; Slowing - period of slowing %K; Calculated bar - number of bars in the chart for calculation of the indicator. The following parameters are intended for adjusting the weight of signals of the
The Moving Average Convergence/Divergence(MACD) indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Fast EMA period - indicator drawn using a tick chart. Slow EMA period - slow period of averaging. Signal SMA period - period of averaging of the signal line. calculated bar - number of bars on the chart for the indicator calculation. The following parameters are intended for adjusting the weight of MACD signals (from 0 to 100). You can find their desc
The Bollinger Bands indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Period - period of averaging. Deviation - deviation from the main line. Price levels count - number of displayed price levels (no levels are displayed if set to 0). Bar under calculation - number of bars on the chart for the indicator calculation. Buffer indexes: 0 - BASE_LINE, 1 - UPPER_BAND, 2 - LOWER_BAND, 3 - BID, 4 - ASK.
The Moving Average of Oscillator(OsMA) indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Fast EMA period - fast period of averaging. Slow EMA period - slow period of averaging. Signal SMA period - period of averaging of the signal line. calculated bar - number of bars for the indicator calculation.
Ticks CCI 4
Andrej Nikitin
The Commodity Channel Index(CCI) indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: period - number of single periods used for the indicator calculation. calculated bar - number of bars for the indicator calculation. The following parameters are intended for adjusting the weight of CCI signals (from 0 to 100). You can find their description in the Signals of the Commodity Channel Index section of MQL5 Reference. The oscillator has required directio
Ticks ADX 4
Andrej Nikitin
The Average Directional Movement Index indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Period - period of averaging. Сalculated bar - number of bars on the chart for the indicator calculation. Buffer indexes: 0 - MAIN_LINE, 1 - PLUSDI_LINE, 2 - MINUSDI_LINE.
The Standard Deviation (StdDev) indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Period - period of averaging. Method - method of averaging. calculated bar - number of bars for the indicator calculation.
The Momentum indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: period - period of the indicator calculation. levels count - number of displayed levels (no levels are displayed if set to 0) calculated bar - number of bars for the indicator calculation.
The Bulls Power indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Period - period of averaging. The number of ticks to identify high/low - number of single ticks for determining high/low. Calculated bar - number of bars for the indicator calculation. The following parameters are intended for adjusting the weight of Bulls Power signals (from 0 to 100). You can find their description in the Signals of the Bulls Power oscillator section of MQL5 Refer
The  Bears Power indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Period - period of averaging. The number of ticks to identify high/low - number of single ticks for determining high/low. Calculated bar - number of bars for the indicator calculation. The following parameters are intended for adjusting the weight of Bears Power signals (from 0 to 100). You can find their description in the Signals of the Bears Power oscillator section of MQL5 Refe
Tiks ATR 4
Andrej Nikitin
The  Average True Range (ATR)  indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: ATR Period  - number of single periods used for the indicator calculation. The number of ticks to identify Bar  - number of single ticks that form OHLC. Price levels count  - number of displayed price levels (no levels are displayed if set to 0 or a lower value). price mode  - choice of prices under calculation (can be bid, ask or average). Сalculated bar  - number of
Tiks WPR 4
Andrej Nikitin
The  Williams' Percent Range (%R)  indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: WPR Period  - period of the indicator. Overbuying level  - overbought level. Overselling level  - oversold level. price mode  - choice of prices under calculation (can be bid, ask or average). Сalculated bar  - number of bars for the indicator calculation. The following parameters are intended for adjusting the weight of WPR signals (from 0 to 100). You can find t
The  Price Channel  indicator drawn using a tick chart. After launching it, wait for enough ticks to come. Parameters: Period  - period for determining the channel boundaries. Price levels count  - number of displayed price levels (no levels are displayed if set to 0). price mode  - choice of prices under calculation (can be bid, ask or average). Bar under calculation  - number of bars on the chart for the indicator calculation. Buffer indexes: 0 - Channel upper, 1 - Channel lower, 2 - Channel m
Abigail 4
Andrej Nikitin
Description: Abigail is a medium-term trading system making profit during the price rollback. The Expert Advisor has been optimized for working on EURUSD. However, it can successfully work with other currency pairs as well. You can examine the Expert Advisor's trading statistics for different brokers and symbols at MetaTrader 4 and MetaTrader 5 Trading Signals sections. Parameters: Risk management: enter volume - market entry volume. If the value is greater than 0 - number of lots, if less than
TimeFilter 4
Andrej Nikitin
TimeFilter indicator allows you to visually select bit masks (GoodHourOfDay, BadHoursOfDay, GoodDayOfWeek, BadDaysOfWeek) for the  Intraday Time Filter  module of trading signals of the Standard Library. The use of time filters allows you to take into account the particulars of each trading session in performing trading operations.
TimeFilter simple 4
Andrej Nikitin
1 (1)
The indicator is an inter-week hourly filter. When executing trading operations, the indicator allows considering time features of each trading session. Permissive and restrictive filter intervals are set in string form. The used format is [first day]-[last day]:[first hour]-[last hour]. See the screenshots for examples. Parameters: Good Time for trade - intervals when trading is allowed. Bad Time for trade - intervals when trading is forbidden. time filter shift (hours) - hourly shift. percent
TrailingStop 4
Andrej Nikitin
4.83 (6)
The Expert Advisor modifies the Stop Loss order position opened for the instrument of the current chart based on indicator values. Uses indicators Parabolic SAR ,  NRTR (Nick Rypock Trailing Reverse) ,  Moving Average  or linear regression channel. Switchable modes: Trailing stop only when in profit; Trailing stop only following the price; On every teak or on formed bars; Trailing for each order separately or for a total position. Has an option of "hidden stop", also you can exclude individual
AccountQuickReport 4
Andrej Nikitin
5 (1)
The script creates account summary report in a separate window. The report can be created for all deals and for deals on selected financial instruments. It is possible to specify a time interval of calculation and save report to an htm file. Script inputs report starting date - initial report generation date. symbols selection for report - select a method of choosing tools for a report generation. allSymbol - report is generated for deals performed on all symbols. onlyCurrentSymbol - report
PositionGroupClose 4
Andrej Nikitin
5 (1)
The EA performs trade operations of closing position groups. Positions are grouped by type. It is possible to select orders by the profit (loss) value. It is possible to form the closure groups manually. You can set a value for automatic closure of a positions group after reaching a certain profit/loss level or price level. The additional functions of the EA are called using the hot keys: SHIFT+A - show/hide Auto exit options. SHIFT+S - show/hide Settings panel. SHIFT+V - sound ON/OFF. SHIFT+I -
AddPosition 4
Andrej Nikitin
The Expert Advisor for increasing (or opening) market positions. Allows specifying the desired risk, target and searching for the best open price and trade volume. Configurable Parameters: lots - directly the volume of the position increase. % equity - the amount of growth as a percentage of the amount of funds. stop loss - directly the level of the stop loss order. loss - the level of the stop loss order depending on the allowable loss. take profit - directly the take profit level of
The Expert Advisor notifies that a price has crossed a line on the chart. It handles two types of lines - horizontal line and a trendline. The number of lines is unlimited. Parameters: prefix of signal line - prefix of object (line) names processed by the indicator. If the parameter is empty, it handles all object types: horizontal lines and trendlines. price Mode - price type (bid or ask). timeout - crossing alert timeout. number of repeats - the limit of crossing alert repeats. number of comme
Auswahl:
Andrei
836
Andrei 2017.05.16 11:26 
 

Der Benutzer hat keinen Kommentar hinterlassen

Antwort auf eine Rezension
Version 1.20 2017.05.22
Added the ability to make reports on the deals with a certain magic number.
It is now possible to hide the account number and holder's name in reports.
Version 1.10 2015.09.15
Fixed errors, expanded functionality.