Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 947

 
optionany:

I need to work with several charts at the same time, but the tester supports only one)))

P.s Found this trading simulator for MT (http://analitika-forex.ru/forum/49-659-1)

You can analyse several (with some restrictions) and trade one at a time
 
abeiks:

Can you tell me how to do the same (get Pr[]) with ArrayCopy?

Why ArrayCopy? You can use an index-looped array.

Define variables on the global level.

int DimArray = 5; // это для вашего случая
int idx = 115; // задаем стартовое значение: любое целое

Your code will look like this

   double temp_prace=SymbolInfoDouble(_Symbol,SYMBOL_BID);
   if(MathAbs(PriceOld-temp_prace)>0.000006)
   {
      idx--;
      idx = MathMod( DimArray + idx, DimArray); 
      Pr[idx] = temp_prace;
      PriceOld = Pr[idx];
   }

If you need an array element Pr[] with index k, its index is calculated as follows

   kidx = MathMod( k + idx, DimArray); 
 
Who knows where to see how the GBPCHF trades over the weekend? Thank you.
 
Midas09:
Who knows where to see how the GBPCHF trades over the weekend? Thanks.
Somewhere out there http://forex.tradingcharts.com/quotes/Maj_crosses.html but, I've noticed that the readings can be quite different on Monday openings.
 

Please give me a description of a candlestick which has a lower shadow 2 or more times the upper one. Maybe there is a description of candlestick combinations somewhere?

In general, I am interested in such combinations





 
Mislaid:
Somewhere in there http://forex.tradingcharts.com/quotes/Maj_crosses.html, but, I've noticed that readings can vary greatly by Monday's opening.
Thanks on that too! ))
 
Mislaid:

Why ArrayCopy? You can use a looped, indexed array.

Define the variables on the global level

Your code will look like this

If an element of array Pr[] with index k is needed, its index is calculated as follows

Thank you very much!
 

Hi all, I don't know if I'm asking the question in the right place... Interested in a tool/indicator for MT4 that performs a similar function (see picture).

I.e. to show market movement parameters (number of pips and bars). Instruments in the terminal also show values, but if you release them - everything disappears. I want it to show constantly.

Can someone suggest such an indicator?

 
Is it possible to catch a mouse click event on a graph?
 
tuner:
Is it possible to catch a mouse click event on a graph?
https://docs.mql4.com/ru/eventfunctions