MQL4 and MetaTrader 4 - page 1193

Can I have multiple parameters stepped simultaneously during optimization? For instance, if I check the optimization box for 'ParamA' (start=0;step=1;end=5) and also for 'ParamB' (start=0;step=1;end=5), its going to do a run for [ParamA=0, ParamB=0], [ParamA=0, ParamB=1], [ ParamA=0, ParamB=2]
What actually goes on when a user right clicks on the chart, brings up Expert Advisors --> Properties, changes an external parameter, then clicks OK? I always thought the expert was re-initialized but this doesn't seem to be the case based on my observations. Does it just keep running start() with...
[Deleted]
Dear all, I have a problem in mql4. The image below consists 2 overlay indicator. RSI(2) and CCI(6). By visual I can determine the cross between cci and rsi ( pointed by red circle), but I don't know how implement in the ea (coding mql4). I think cci value must be transformed to rsi value or vice...
[Deleted]
I was used to use 8 MTF_MA.mq4 and packed them in a template. Nevertheless, I want to consolidate them into 1 mq4. I modify the code, but it draw a lot of CPU resource and slow down my computer. Is there anything wrong in the program? Please help! -------------------------- #property copyright...
In the results graph, there are two lines, the blue profit line and the green equity line. many of the tests I do end with the equity line heading to zero near the end, my question is, why is this ? Is it a flaw in the strategy tester ?
[Deleted]
//--------------------------------------------------------------------// tradingexpert.mq4 // The code should be used for educational purpose only.//--------------------------------------------------------------------#define MainBuffer 3#define SignalBuffer 4#define HighesBuffer 5#define LowesBuffer...
Hi there, Last week we released Expert Advisor Visual Wizard Pro. It’s our new strategy builder for MetaTrader 5 - It creates EAs in MQL5 without any coding. You don't need to know MQL5. It has an easy to use visual environment. You can read more about it at http://www.molanis...
What is the best way to change this code so that the alert only happens at the end of the candle once we know for sure whether it is going to be green or a red candle? //+------------------------------------------------------------------+//|                                                  Heiken...
I want t automade my stradegy wich i trade for a numerous years succefully can somme one helpme ??? pls contact me at " tranco@inbox.com"
[Deleted]
Hi All, I was hoping you could help me, my MT4 company is smartlivemarkets and whenever I loose connection to there servers, whether its at my end or theirs the Expert Advisor button turns red. I have an EA running all night so when I get up lots of trades don't execute because the connection...
The arrows here are only shown in one direction. Any ideas where the error is? //+------------------------------------------------------------------+//|                                             100_200MAs_Alert.mq4 |//|                      Copyright © 2011, MetaQuotes Software Corp....
[Deleted]
The two indicators are Positive Volume INdex, and Negative Volume Index. There is a way where you can download these indicators and attach them to mt4 am I correct? Or do I have to code them. All help is gretly appreciated
[Deleted]
Hi, sorry to bother you all again, but I was wondering if anyone can point me in the right direction. The problem I am having is turning the formula on the attached file into code for my EA. I am trying to add code that will automatically change the lot size as my equity grows in increments of 500...
here is my problem, I have try to list up my orders for in case my pc shuts down during the night for exemple... here is what I coded for the listing tough it dosent seem to operate properly... maybe it's not on init() function I need to set these variables up. anyone haves a clue about it? I hope...
i'm very sorry if its a basic question, but i got stuck with that. My question is: how to change variable name in loop, for example: for (a=1;a=7;a++) { variable(here next number "a" taken from loop) } i'm not writing about using arrays, just want to test many variables in one loop. i've searched...
Is it possible to look at other sectors/instruments on m EA in MT4? For example, I would like to monitor the S&P 500 while I trade EURUSD ? Thanks! Vishal
Is it possible to use regular arrays to accumulate price values so the array can then be used in ImaOnArray() or should drawing buffers always be used for this ?
Hello to all The existing code does work. I will post the code in the next message within this thread. Yes, this code does work, not that it is profitable, but it is a great learning tool. The system at this time trades one position at a time (enters a position, then closes that particular position)...
[Deleted]
Is it possible to ue a mobile metatrader or a normal MetaTrader over a I-Phone? what i would use is a connection to a VPS-Server where my MetaTrader run, wich i can make over such a I-Phone from everyhwere, if somebody has experience and solutions with such thinks would be great to hear somethink...
Hi When I use MACD I only get an answer up to 4 digits. I need 6 digits. Have tried NormalizeDouble But still get 4 digits after the decimal point. Thanks
I can't figure out why my EA isn't making trades. When I run it through the tester it has no problems, but when I try and use it it just sits there. I'm new to programming and I'm sure it's something simple. Any ideas would be appreciated as well as suggestion for the code.
[Deleted]
Hi I have this code for working out my pivots: double Pivot(string up_dn){int time = StrToTime("22:00")-(Period()*60),shift;   if(TimeCurrent()<=time){      shift = iBarShift(Symbol(),Period(),iTime(Symbol(),1440,1)+(22*3600)-(Period()*60),false);   }else{      shift = iBarShift(Symbol(),Period()...
[Deleted]
I am trying to programm an EA relating to the criteria as described in the Bulls Power Indicator. The fourth criteria to open a buy position "the Bears Power oscillator increases after the Bulls divergence" is not so easy for me to translate as I am quite new to MQL4. To know if there is a bullish...
Hi This indicator often does not work if the price move is too fast. Is there a way to fix it? thx //+------------------------------------------------------------------+ //| HLine Alert.mq4 |...
Hi Im wondering if anyone knows of any code to give me a list of all used indicators on a chart, and their current value? Something like, foreach(indicator ind on chart) { ind.name ind.value[1] etc } Is something similar possible? Thanks
int start()  {//---- double ABUY=0;   double ASELL=0;   double BBUY=0;   double BSELL=0;   double HABUY=0;   double HASELL=0;   double HBBUY=0;   double HBSELL=0;   double point = MarketInfo(Symbol(),MODE_POINT);   double expiration=CurTime()+PERIOD_D1*60;         int n;   int total=...
[Deleted]
Forex signals are used to a great extent in the financial markets, specifically with foreign exchange. There are many facets to this tool. As such, they offer a significant amount of benefit to the investors and traders in this financial market. The main advantage in using this sort of tool deals...
hi, i have an EA which uses a couple of indicator functions as part of the trading strategy. however, to monitor the progress of the EA it would be good to have the indicators showing on the chart as well (running with the same parameters that are being used from within the EA). setting this up is...
[Deleted]
How to return more than two parameters
here is the script I wanted it to loop all the way to get max profit but it seem that I overcharged it with functions or something says stack overflow but I don't get where it's overloaded with functions (I seen lots of eas that does use way more functions then that and ran) extern double threshold...