MQL4 and MetaTrader 4 - page 520

I would like to change stop pending order price of Binary option. and write below code but does not work. Can i modify pending order price of BO or What is wrong here? bool fm;   for (int i=0; i < OrdersTotal(); i++)   {      if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES))       {         if...
This one is odd. Take the following: MqlDateTime tl; Now, I should be able to type "tl." (without the "") and see what the options are (maybe a better word would be "intellisense").  After the update of Windows 10 today, it has disappeared.  This only happens on pre-defined structures within MQL4;...
How can I get the candle number on which the vertical line is drawn? Sorry for my English.
i created an ea that use a bridge to open trade on binary.com . I want to implement a martin gale system or a system based on events .  so i wrote this if(isWon==1 || contractFound==0){investment=capital*(3/100);}   else if(isWon==0 && isExpired==1)     {      for(int i=0;i<4;i++)        {...
hello, this is my 1st question here in mql forum. im new to coding and sorry if my english is bad as the title says, heres the code for(int i=0; i<50; i++) {      currentHigh=iHigh(Symbol(),0,i);    previousHigh=iHigh(Symbol(),0...
Hi All, Lately my EA's have been running into the OrderSend error 136 a lot of the time. So I have placed my OrderSend code into a loop that repeatedly retries to send the order up to a maximum of X times until the order is filled. Problem is sometimes even after 10-15 attempts I still get the same...
With the following code I cant see why I'm getting order send error 130? When I test on my broker vipromarkets it is bug free but when I take it to auto validation it returns ordersend error 130. Why is it the first code here works okay with no bugs :          if(OrderType() == OP_BUY)...
void start() { //Find Moving Averages double fastma, slowma; double total; bool ticket; fastma = iMA ( Symbol (), 0 , 5 , 0 , MODE_EMA , PRICE_CLOSE , 1 ); slowma = iMA ( Symbol (), 0 , 8 , 0 , MODE_SMA , PRICE_CLOSE , 1 ); total = OrdersTotal (); //Start operations if (total < 1 ) {
Hi,guys. It's first time posting the theme. If I broke the rule, plz tell me. I am a C programmer, and I don't know where the entry point is(it's main() in C).  For example: //External,variables extern double LotSize = 0.1; ... ... // Global variables int BuyTicket; int SellTicket; ... int...
Hi All, I am creating an E.A based on IADX. When +D1 is greater then -D1 then it will buy and vice versa. my problem is when i integrate this E.A on chart it directly place buy or sell order based on these condition no matter where current trend is, like. if the buy trend is nearly to end no matter...
Hallo, I want to add my "close all trades" script to my indicator, can someone explain how to add the codes to my indicator ? thanks
  PipsChart  (55   1 2 3 4 5 6)
I posted this elsewhere, there wasn't much interest, so it should be safe to make a thread of it... The PipsChart indicator draws bars based on the pips movement rather than time, to only make a new bar when price moves far enough from the opening price. This is similar to a Point&Figure chart, but...
Why an I receiving ordersend error 4107 and invalid takeprofit for ordersend function on testing the following code? extern string SECTION_C = "*** Trade Management ***";input int StopLoss = 40;  // Stop Lossinput int TakeProfit = 1000;  // Take Profitinput int TrailingStop = 10; // Trailing Stop As...
Tried using iClose, however it is only good for "candle close price", I want whenever it actually happened so as to be more precise. So I went the HLINE route, and cant find a way to just give me the last time the current HLINE touched the same bid price. Thought about drawing another VLINE on the...
if(OrderMagicNumber()==00000 && OrderSymbol()==Symbol() && OrderProfit()>(-OrderCommission()+-OrderSwap()))OrderModify(OrderTicket(),0,Ask,0,0); The above code sometimes nails it, sometimes doesn't. Maybe works right like 90 per cent of times or so. Sometimes misses the right moment, yet then later...
Did anyone have this issue too? I just recently spotted both FXPro and Tickmill Hourly Bar didn't close at XX:00. Instead it closes 10 minutes earlier before the hour. 
Dear All, I got some problem with my EA. Now it is in development phase. I run it parallelly with coding and updated version. But after the EA is running and opening some orders, after I updated my code and refresh it. It seems my EA can not continue working with existing orders. Anyone knows how to...
Hi! I have some COT data that I want to plot under the main price window as an indicator. The COT data are external data, i.e. independent of the prices. So one can not write it like a traditional indicator calculated from the prices. Since I have all the data needed, I don't need to do any
  Simba Trades  (65   1 2 3 4 5 6 7)
1-I would like to post a few live trades..just to follow the example of my friend cementman ..and enjoy the discussion..if any 2-Every week I will summarize the results for closed and open trades..let`s start,position sizes are for an account size of 150k to 200k usd..Do them exclusively on demo
  RSI in MT4 app  (5)
Hi, where is the RSI in the MT4 app? Cannot find it... Regards
void OnTick()  {   //Code should only be executed once per day (at the end of the day)   static datetime oldtime;   if(oldtime!=iTime(NULL, PERIOD_D1, 0))   {      stronger("EURUSD");                 oldtime = iTime(NULL, PERIOD_D1, 0);   }bool stronger(string Pair)// Function returns True if it was...
Hello, could you explain why as I scroll back in the history, value of Bars increases? From the description I imagine that it would contain all Bars I can go back to. But when I load my indicator, I can see around 250 bars on my screen, Bars variable is equal to 3000. I start scrolling back the...
Hi..... sorry for my poor english language... this Script https://www.mql5.com/en/code/1252.....Export all Symbol in Market Watch in CSV format... I want in the last column in CSV file ...the Script Write RSI Value... this Script https://www.mql5.com/en/code/273 Create indicator value Is it possible...
I would like to simultaneously scroll multiple charts with one command. Same pair in different time frames/charts. Is that possible? 
Hi, I am baffled. I was looking for a way to get the broker's commission of a symbol without trading it. For an open or closed position I do have OrderCommission(). (But why the hell should I go through the whole history with the chance to miss a symbol as it was not traded yet) Can someone please...
Hi  I have written a very simple logic based on ADX that is shipped with MT4. Code: double adx_previous = iADX(NULL,PERIOD_M15,6,PRICE_CLOSE,MODE_MAIN,1); //Previous Candle ADX Double Value double adx_current = iADX(NULL,PERIOD_M15,6,PRICE_CLOSE,MODE_MAIN,0); //Current Candle ADX Double Value...
Hi in my EA MT5 there are differents indicators and everyone can to be false or true. There are two CCI. Every CCI have setup for line buy and setup for line sell. If CCI line cross linebuy... buy If CCI line cross linesell... sell Is correct this ? :  if(cci(InpCCIPeriod2)>CCI2LineValueBuy &&...
  PLEASE HELP!  (5)
I hope this will be easy question for some of you as I'm only a newbie with Forex.  I don't know why this occurred.  It may be because I attempted to debug a script file.  A few weeks ago I was debugging with MetaEditor (Build 1526), ... 1 - I "Compiled" the code.  Generated...
  HELP  (1)
Ciao vorrei sapere se parli italiano e se puoi consigliarmi. Ho un pc portatile acquistato 2 anni fa con win.10 - ho una mt4 swissquote con vari indicatori e vari template salvati. Quando apro l'applicazione va tutto lentissimo, il pc si rallenta. Prima che io inserissi i vari indicatori e prima che
Hi friends, I'd like to know how can I get the total number of indicator buffers I've used in my indicator. thanking in advance,