Errors, bugs, questions - page 1746

 
Stanislav Korotky:

Is there a limit on product file size in the Marketplace?

I have looked at the Terms and Conditions. There is no answer there.

I have a game for 17 metres - it's OK, it's OK.
 

Hi all! Probably not in the right topic, but I couldn't find any other forums or topics.

The situation is as follows - I opened an order to sell USDNOK, but the order closed at the same second with a minus, taking all the money with it. Is it a broker's glitch or a terminal glitch? Or is it a broker scam? I am not sure if it is a glitch of the broker or the terminal or a scam by the broker?

Skirn

 

What is the purpose ofChartXYToTimePrice doing the normalisation of the returned price?

If this is the intention, add information about this in the Help.

 
"template function cannot be virtual" - why this restriction?

 
Comments not relevant to this topic have been moved to"Price range in one pixel chart vertically".
 

In order for an object to be selected, true OBJPROP_SELECTABLE must be done first, and then OBJPROP_SELECTED.

Otherwise, the object will not be selected. Add this to the Help!

 

Question:

On the server, at the root of a website, there is a folder with an unknown number of files with unknown names and CSV extensions

Is it possible to get an array with file names via WebRequest?

 
Vladimir Pastushak:

Question:

On the server, at the root of a website, there is a folder called files that contains an unknown number of files with unknown names and CSV extensions

Is it possible to get an array with file names via WebRequest ?

If the server stores a ready-made or automatic table of contents (e.g. in sitemap format or other).
 
I don't see a problem with making an api that returns this
 

why does the styler (mql4) work so strangely?

why does it stubbornly refuse to align the first two lines? is it a bug?

   if(!using_filters) ShortName="Total"; else ShortName="";
   if(Only_Magics!="") ShortName=StringConcatenate(ShortName," ",Only_Magics);
   if(Only_Comment!="")             ShortName=StringConcatenate(ShortName," ",Only_Comment);
   if(Only_Symbols!="")             ShortName=StringConcatenate(ShortName," ",Only_Symbols);
   else if(Only_Current)            ShortName=StringConcatenate(ShortName," ",Symbol());
   if(Only_Manual && !Only_Expert)  ShortName=StringConcatenate(ShortName," Manual");
   if(Only_Expert && !Only_Manual)  ShortName=StringConcatenate(ShortName," Expert");
   if(Only_Buys && !Only_Sells)     ShortName=StringConcatenate(ShortName," Buys");
   if(Only_Sells && !Only_Buys)     ShortName=StringConcatenate(ShortName," Sells");
   if(Only_Trade)                   ShortName=StringConcatenate(ShortName," Trading");