[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

 

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?

 
Unfortunately, all you have to do is wipe away your tears, say the Japanese word "hushim" and forge a new story. No one is going to bother with the demo account, everything is wiped straight through, bypassing the basket. Sorry.
 
Roger >> :
Unfortunately, all you have to do is wipe away your tears, say the Japanese word "hushim" and forge a new story. No one is going to bother with the demo account, everything is wiped straight through, bypassing the basket. Sorry.

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!

 
:)
 
irq77 >> :

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?

 
irq77 писал(а) >>

Does anyone know how to do this?

What's wrong with Comment()?

Comment("Символ: "+Symbol()+" ТФ: "+Period()+" Время: "+TimeCurrent());
 
how do I make a stop loss trigger after 3 bars?
 
mambekk >> :
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!

 
VeDMeD писал(а) >>

Trying to program... there's this code

int start()
{
   double MacdPrevious, MacdCurrent; 
   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("Действующий МАСD"+ MacdCurrent);
   Print("Предыдущий МАСD"+ MacdPrevious); 
   Print( "Предыдущий максимум цены" + iHigh(NULL,PERIOD_M1,1));
   Sleep(60000);
   return(0);
}

Reason: