[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 348

 
chief2000 >> :

There is a "Save as report" option in the EA optimisation, but the "Input Parameters" are not shown in the internet explorer,

although, judging by the html code, they are present there. In general, it was for the sake of these parameters that the optimisation was started.

Does anybody know how to view them in browser?

The only way to check them is to move your mouse cursor over the line.

 
Reshetov >> :

You can only look if you move the mouse pointer to the row.


Yes, indeed, but only if you move the mouse to the first column.

>> Thank you!

 

Guys, help me correct the code

   if( n1<( c4+ f1))
   {
   OrderSend(Symbol(),OP_BUY, Lots, ask,4, ask- StopLoss*Point,0);
    }
   if(Close[1]>( c3- f1)) 
   OrderSelect(OrderTicket(), SELECT_BY_POS, MODE_TRADES);
   OrderModify(OrderTicket(),OrderOpenPrice(), ask- StopLoss*Point,( b1- f1),0,Blue);
After opening a buy position Close[1] does not work out, how can we fix it?
 
Alexandr24 >> :

Guys, help me to correct the code.

After opening buy position Close[1] is not calculated, how can we correct it?

   
   OrderSelect(OrderTicket(), SELECT_BY_POS, MODE_TRADES); // Так нельзя, потому что значение OrderTicket() можно получить только после вызова OrderSelect(). 
 

Can you advise who to contact to rewrite the code of the indicator in MQL 5?

 
Good day. Help, I need an EA to determine when an order was placed. And then calculate the modification of the order on the exact day...
 
Dear traders, please advise how you can get the chart to square in MT, so that when you scale it later, the circles do not change shape and values, while remaining circles.
 
warlock >> :
Good day. Help, I need an EA to detect when an order has been placed. And then calculate the modification of the order on the exact day...


Order or position ?

You may find these functions helpful (from https://www.mql5.com/ru/forum/107476):

NumberOfBarOpenLastPos() function.

This function returns the bar number of the last position opened p.23

Function TimeOpenLastPos(). P.25

This function returns the time of the last position opened.

Function SecondsAfterOpenLastPos(). P.26

This function returns the number of seconds after the last position opened.


 
aksol писал(а) >>

Can you advise who to contact to rewrite the indicator code in MQL 5?

See inbox

 
EgorD писал(а) >>
Dear traders, please advise how you can get a square scale on a chart in MT, so that when you scale it later, the circles do not change shape and values, while remaining circles.

Chart Properties - General - Fixed Scale

Reason: