Mom_markets1
Mom_markets1
Friends

Add friends via their profile or user search and you will be able to see if they are online

Mom_markets1
Added topic BRAND NEW MAJOR FILE WRITING ERROR
hello, Attached is the file containing the following errors: ';' - unexpected token Reader Delay.mq4 48 62 'handle100' - constant expression required Reader Delay.mq4 48 7 '{' - some operator expected Reader Delay.mq4 47 7 expression has no effect
Mom_markets1
Added topic ++ HAS STOPPED WORKING
here is a sample indicator. you can see that ++ does not work. the buffer should rise one integer for every bar over time
Mom_markets1
Added topic Can a MT4 genius tell me why this will not work?
I have been able to get almost every wm command to work except this one:  PostMessageA(hndl, WM_COMMAND, 34100, 0); // for the first profile   it is supposed to change profiles. I have been able to get every other wm command to work, and
Mom_markets1
Added topic wm command to switch profiles problem
I have been able to get almost every wm command to work except this one:   PostMessageA(hndl, WM_COMMAND, 34100 , 0 ); // for the first profile   is there a different function I should be using? is PostMessageA correct?  
Mom_markets1
Added topic very simple OrderSend question
I have a very simple problem, or I hope it is. I cannot believe that this code is not working: ticket=OrderSend(Symbol(),OP_BUY,1,Ask,3,0,0,"",0,0,Green); I guarantee that the condition triggering this trade request works perfectly, but I
Mom_markets1
Added topic Buy Limit orders are very different between brokers
Hello, I would very much appreciate if someone could share some simple lines of code they use with Alpari to request a Buy Limit order. I have been able to do this with other demo brokers, but the code is always a little different, and I have not
Mom_markets1
Added topic WHAT DID YOU DO?????????? HOW COULD YOU UPDATE YOUR SOFTWARE AND MAKE THIS NOT WORK??????????
It is just a buffer that counts every bar. There is no way to make it work now. int limit;    if(prev_calculated==0)       limit=0;    else limit=prev_calculated-1; int tick;    for(int
Mom_markets1
Added topic New Update Problems
Hello, after the most recent meta editor update, I get a warning for several variables that they have not been initialized.    int tick;    int cat;    int dog; That is how they have been initialized, but I cannot find
Mom_markets1
Added topic How to refresh an indicator
Hello, I have an indicator that I would like to refresh on every new bar. It looks like I need to use #include. I see that there is a function called Refresh(), but I think adding this function to my indicator requires a lot of code to access
Mom_markets1
Registered at MQL5.community
Mom_markets1
Added topic An EA made from other EA's?
I really want to find out if i can trade based on whether 4 other ea's are currently in trade. Is there a way to access the order status of multiple ea's and trigger a trade based on that? I was thinking that OrderSelect could access other ea's trade