[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 132
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I had a demo account that ceased to exist - the broker cannot restore it.
I would like to look at the Trading History and so the question is where is this information stored:
Is it on the broker's server or is there a local copy? Is it possible to restore the Transaction History?
Pity, next time I'll be saving the reports to disk.
Russian, by the way, has quite enough appropriate words and expressions :)
Thanks for the info!
Hello!
How can I replace the text in the OHLC field that pops up in the upper left corner of the currency pair window, which always shows a combination of "symbol" + "TF" + "OHLC"? For example, I would like to display the following instead: "symbol" + "TF" + "current server time".
No one knows how this can be done?
Does anyone know how to do this?
What's wrong with Comment()?
how to make a stop loss trigger after 3 bars?
To "make it work"? ("There's a trick to scrap!")
Maybe the NumberOfBarOpenLastPos() function, which you can find in I.Kim's branch, will help you.
I don't remember which page. Do it yourself. It seems to be the 23rd.
https://www.mql5.com/ru/forum/107476
Trying to program... here is the code
int start()
{
bool result;
double MacdPrevious, MacdCurrent;
while(true )
{
MacdCurrent = iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,0);
MacdPrevious = iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,1);
Print("valid MACD")+ MacdCurrent);
Print("Previous MASD "+ MacdPrevious);
Print("Previous maximum price" + iHigh(NULL,PERIOD_M1,1));
Sleep(60000);
}
return(0);
}
It looks like it should output different data every minute, but it doesn't. Help!
Trying to program... there's this code