Expert Advisors and Automated Trading - page 301

Hi Coders, I am not sure if this is the right section of the forum. Can somebody please add the 3-level semfor indicator (attached) to the Ascitrend EA attached with the post. The EA currently opens positions at Asctrend signal and closes at the opposite signal. It also has TP, SL, Trailing SL, etc...
Does anyone know how to perform the max drawdons in xx candles? I have an example of symbol prices like below: Candle Close high Diference 0 1.258 1.265 0.007 1 1.265 1.274 0.009 2 1.274 1.286 0.012 3 1.286 1.3 0.014 4 1.3 1.29 -0.01 5 1.29 1.291 0.001 6 1.286 1.285 -0.001 7 1.285 1.283 -0.002 8...
  EX4 Decompile  (2)
Hello, is there a software that can decompile the ex4 Build Version 5 Build 1601. I'm interested because I need to know if I have to protect my EA or not. Thanks for your help
Hi Guys, I'm trying to learn the basics in MQL5 coding, i'm trying to display the text "Hello" on the left side of my screen. This is the code i used: void OnTick()   {         // Say hello      Comment ("Hello ");      }  When i load te EA, it doesn't display Hello on my screen. It only says hello...
Hi Everyone, I'm learning to write programs in mql. I wrote a piece of code to identifier possible beginning of trend i'm using three averages to do that: Moving average Period = 20  :  mediumMovingAvg      Moving average Period = 8     :  fastMovingAvg      Moving average Period = 60   :...
Hello again mql community! Im back with an issue im hoping someone may have a solution to. I am currently trying to run massive optimization on all of my EA's and find the best possible parameters for each to set as defaults. However, the three computers I can spare for this project have an i3-2310
Hi all I got an issue with the Stop Loss and can't find out the cause - I got the Mt4 version running just fine however, mt5 is not able to run.  Mql5 can't HELP ..... and suggest to ask the Forum - Does any one has this issue (anoying...) and how to solved it  EA on mt4 works fine - Mt5 ...!!!...
#include<Trade\Trade.mqh> CTrade trade; void OnTick () { double Ask= NormalizeDouble ( SymbolInfoDouble ( _Symbol , SYMBOL_ASK ), _Digits ); datetime time= TimeLocal (); string HoursAndMinutes = TimeToString (time, TIME_MINUTES ); if (( PositionsTotal ()== 0 ) && ( StringSubstr
Hello Gurus in the house, Please I need your help in solving this nagging problem of assigning each name of pairs to OrderSend function to open, I was able to call all the symbols from the market watch but to assign a particular pair for each OrderSend is the problem, it was just picking all the...
Hi everyone, So I'm currently trying to optimize my EA that was running okay, and I don't really know how to interprete the data that is shown, I red an article about the optimization but nothing that is helping me, also I've been using "open price" only to get more data faster. But here is the...
hi...i accidentally update the ea than i realize didn't like the last version describe   are there any ever downgrade version? thx
Hello everybody, I try to create my custom symbol and I generate tick history for it. But the bar history is missing. It is possible to generate the bar history from tick history automatically from the platform (MT5), or I must generate it manually
How to change account associated with an VPS rented from MQL5.COM ? Thanks
Hello Guys, I made a bool function to count my positive and negative trades daily, if there is more then 3 it returns true. In backtesting it works because all positionated volume closes at once. In real trades, the volume is closed in parts, so the function counts more then 1 positive trade and...
Can I download data of timeframe M1 in MT4 ?
Suddenly the OnChartEvent stops working, not only with my EA but even with the examples ones. What's happened? Thank you!
hi, now many EA can I use on a sigle MT4 before  having some stability/speed problems? 20 , 30 EAs? Thanks
Hello, using MT5 2006 I did a backtest about 2 month ago for which I have the full report. Now suddenly the results are different no matter if I use MT5 2006, 2007 or 2015. I cannot reproduce the same result as 2 months ago. Did Metaquotes change the backtest tick data recently ?
hello some pro coders please reply me. why on some EAs backtesting speed is too fast and on another ones it is too slow? and how to speed up backtesting speed on slower ones? thank you previously
Hi all, thank you for taking the time to read and help. A friend of mine is working with a developer who says he cannot fullfill the order because his account has been blocked by mql5 and that my friend should just wait as he is waiting feedback from mql , but the order remains open and looks normal...
I want to write a function that examines a condition on all the watch list symbols. Does anyone have a code in this regard?
  Corrupt EA?  (2)
Dear forum members, May i ask if someone knows my issue? When you make a new EA using Metaeditor and press the save as button the program goes directly into the correct folder (i.e. expert folder for EA and indicators folder for indicators etc) Now i have made a (huge) EA with a lot of inp (input...
Hi, I want to check my free margin before I open a position. However my EA opens positions at the same time (when markets open). Now I am afraid, that if my EA on different charts checks free margin at the same time, they will all get returned the same free margin for each chart (because all
Hi, does anyone know of whether there is a way to transform the list of optimization results into an excel file?! Thanks
  fraud seller  (5)
2019.05.01 19:00 i purchased product ea on dated 29/04/2019 number 6082914/6082915 of 30$ through paypal but product not work mt5. i try mt5 XM,Pepperstone and FBS but product not work. seller( ) delete this product and not support me. Please cancelled this product and refund me my purchasing cost...
Hi, I need an expert advisor that takes orders from excel sheet. is this possible? Thanks,
Hi, I wrote a code to calculate the sum of past bar bodies. But in some charts, there is no bar in specific time, like silver/usd. I attached the chart. This is the function I get the error in: double AvBarSize (int BarAmount){double SumBar=0;double ABSize;int i;   for (i=3;i<BarAmount;i++)...
Can MetaTrader for Android support this function? I just want my EA can run in my android phone,even if I can't edit it in phone. So that I can turn off my computer and keep the EA run all the time. And I can keep watch the EA running status,stop/restart at anywhere at anytime. can anybody...
I can't find my Signal Provider in my MT4 program under the Signal list. But if I search here on the MQL5 I can find him. Any reason why a particular signal is excluded from the MT4 Signal List
I've racked my brain around this stuff. Looked at the book, watched videos and dove into forums with no luck. the code is in mql4. I'm trying to use iCustom with quite a few hiccups. I'm still new to coding in mql4 but i can't seem to find answers to my issues anywhere. The red boxes have...