General - page 551

Hey is it possible to edit a stop loss or take profit manually if a bot is trading ? lets say a ea places an order with 100 pip stop loss and 100 pip take profit. Will be be able to adjust that after the bot has placed the trade
  file says expire  (3)
greeting,i need help my file says expire
  Chart Objects  (4)
Hi all, Where are the chart objects stored in MT5 ? Let say, I draw few Fib levels on EUR/USD 60 mins chart. Now, MT5 must store the objects values in a txt file. I want to know where location/file name where it saves this data. I have already looked in templates file, but not able to find it. I am
how can i change my account phone number without having the previous one because i lost it
  VPS Rental  (1)
Can I cancel my VPS rental and claim a refund
My EA tried to place a pending sell order, but it failed with the error "invalid price". Everything looks correct to me, normalised and entry price below the current price. The order values are below, as well as a screenshot showing the messages. Order type: pending sell Entry price: 1.19100 Stop
Newbie question. I go to download an indicator from the Market. I'm asked is MT4 open. I say Yes. But it does not download. I was using a different MT$ platform but not now. Do I need to tell MQL5 which MT4 I am using? If now, why won't the indies download? Thanks
Why some developers ask for more money when we ask them for multicurrency and multitimeframe EAs?? Considering this doesnt add more complex programming than using _Symbol and NULL reserved words. Thanks
CCI indicator dose not provide signal when it crosses a certain level. It send alerts when it retouched the level
  Activation  (7)
Hi, I've just purchased the <...>, having previously purchased the Market Profile which I've found to be brilliant. Unfortunately I've had problems installing <...>. I've sorted the problem but I seem to have used all 5 activations could you help/advise me please. Regards Chris
<Deleted> Anybody know what is the problem
Hello. My account still not receive the signal from the provider. Here attached, extract of my journal on MT5 plateform which shows an error. Thank you for your answer. Best regards
i forget why application was rejected many years ago, the question is I can never be seller
int OnInit()   {     MqlTick  tick_Range[] , tick[] ;     int copied_Range , copied ;          datetime Start = D'2016.11.11';     datetime End   = D'2016.12.12';               copied_Range = CopyTicksRange( Symbol() , tick_Range , COPY_TICKS_TRADE , Start , End  );     copied       = CopyTicks...
this is confusing me a bit, string fruit= "Tom today eat some Apple and he is happy" ; return the 5th position/word were meant to be the "apple" i couldn't find anything useful at https://www.mql5.com/en/docs/strings my focus is on mql5
getting a strange access violation when using a EA i use all the time, any ideas
Hi all. I have an indicator which produces a dashboard that displays statistics in percentages. I want to write some kind of script to loop through every single symbol that I have showing on the navigator, and get the data for it, and put it in a CSV. If it's not possible to do it for all of them
  copying signals  (4)
Good day all i have copied a new signal to my account recently but i dont know if its working !! how to know that all the settings and connection to signal are good ? since the signal color is yellow , so what that means thank you
i need help, mt4 is showing with no maeket so i cant bring my robot in. when i search for it it keeps bringing up a security box and i really dont know what to do
Can anyone help explain to an amateur why my EA takes several positions each signal as soon as the fist trade stops. I want it just take one trade
Hi! need some help on that. There are outhere many informational sites like myfxbook or fxblue or similar, where you can connect your mt4 live account and see all the statistics. I want to build my own personal site for that, that i dont use thirdparties. how this can be made. Has someone some
Hi Guys, It seems ECN is true market acces and therefore never garantueed stop loss right? Many Brokers advertise with it, but I think it is a trick and only fro their non-ECN accounts?! Thx
Just assign a single core per mt4 better than 16 core 1 mt5 hardware wise? Sleeping forums
how to remove RSI and stochastic oscillator tabs from mql5.com web terminal
Hey guys I was wondering if it would be possible to code an indicator that draws every tick move on a candle . To explain , this would be an indicator lets say we are using the 4hr timeframe , every time the candle move on a new tick lets say up or down this indicator would draw it similar to a line
// Input variables input double TradeVolume= 0.1 ; input int StopLoss= 1000 ; input int TakeProfit= 1000 ; input int MAPeriod= 10 ; // Global variables bool glBuyPlaced, glSellPlaced; // OnTick() event handler void OnTick () { // Trade structures MqlTradeRequest request; MqlTradeResult result;
  Warning!  (33   1 2 3 4)
This warning is really annoying, I don't know why the developer team won't fix it. This warning is nonsense when a global variables name is the same as a local variables name in another file. The compiler should generate the warning only when both declarations are in the same file. When we use a
A lot of products are using stars in their description. Its very tacky and unprofessional and the sole goal doing that is to fool buyer into thinking its a 5 star product. MQL5 team should do something about it
Using the PC I can no longer connect the MT4 to the server. This problem started yesterday. My internet connections work normally and even if the antivirus and firewall aren't active, there is no way for me to get the connection. The curious thing is that on the smartphone everything works
For some weird reason if I declare variables on a global scope using input it throws an error that says constant cannot be modified but if I use extern instead of input it compiles. Example input int MA_Period=14; //--That above code throws an error extern int MA_Period=14; //--This one compiles but