Errors, bugs, questions - page 1589

 
Thank you, we are working on it.
 

Disgusting work Service Desk, problems are solved very long, and most importantly not thoroughly, (from 20.05 problem is still not solved)

constantly blocks financial payments, but ok if only them, on payments I would just wait for the solution of the problem,

at the same time with payments my products are disappearing from sale, as a result, the customers who have bought my product previously can not activate new copies,

for the last four days i have been flooded with emails and skype messages from customers, and i just got tired of reassuring them that the problem will be solved soon!!!!

p.s. no patience anymore

 

2016.05.24 21:36:53.796 Windows 7 Ultimate (x64 based PC), IE 11.00, 8 x Intel Core i7-6700 @ 3.40GHz, RAM: 8098 / 32684 Mb, HDD: 47765 / 1498122 Mb, GMT+02:00

2016.05.24 21:36:53.796 MetaTrader 4 build 950 started (MetaQuotes Software Corp.)


First time I received such an error:

1 leaked strings left

I get it like this:

I transfer Expert Advisor to a chart - everything is OK,

I go to settings - press OK - and error message appears - EA is deinitialized.

I cannot understand in what direction to dig. The code is not large (>1500 lines) and I noticed it only now.

What are the options for this error? I read someone on the structure of query - but I have no trade requests. Purely informative EA

If you need it, I will send you the open source code

Resolved:

Somenocturnal wizard shoved ExpertRemove(); into OnDeinit() :-(((((

cleaned it up, it's ok, missed in a wrong function :-)

 
Комбинатор:

As far as I remember the developers' explanation, constancy applies to both an object and a pointer.

Only to the object.
 
Anton Zverev:

I have several accounts in the terminal of the A's in my favourites. I would like to connect to these accounts one by one and retrieve the required information.

Has anyone made such a connection through WinAPI? Please share, please.

I am looking for the broker with the best demo prices for the symbol. The idea is like this

  1. Open demo accounts at each of the brokers.
  2. Put them in my favourites.
  3. Login to each of the Favorites, read the average spread.
  4. Record in a common table data.
Anton Zverev:
How do I know complete list of trade servers in 5? Search works only by >=4 characters. Going through variants of four characters via WinAPI is a shitty solution.

Hint at the trading server demo, where the richest list of trading symbols. I want to try porfny TS in tester with real ticks.

 

On some characters I have encountered the situation that the zigzags from the kodobase inside the bar are flipped several times if observed live. And on the history there are no flips in these places.

How do you draw the zigzag flips inside the bar based on tick data?

It doesn't seem to be possible to do that in Five. Will there be a tick chart?

 
Anton Zverev:
When a five crashes, where do I look at the crash log?
Crashed. There's nothing in the logs.
 
Anton Zverev:
It's out. There's nothing in the logs.
How'd you do it? Write to servicedesk, please.
 

I create a button


int OnInit()
  {
//---
   ObjectCreate(0,"Close",OBJ_BUTTON,0,0,0);
   ObjectSetInteger(0,"Close",OBJPROP_CORNER,3);
   ObjectSetInteger(0,"Close",OBJPROP_XDISTANCE,110);
   ObjectSetInteger(0,"Close",OBJPROP_YDISTANCE,40);
   ObjectSetInteger(0,"Close",OBJPROP_XSIZE,100);
   ObjectSetInteger(0,"Close",OBJPROP_YSIZE,25);
   ObjectSetString(0,"Close",OBJPROP_TEXT,"Close All");

   ObjectSetInteger(0,"Close",OBJPROP_STATE,false);
   ObjectSetInteger(0,"Close",OBJPROP_FONTSIZE,10);
   

   return(INIT_SUCCEEDED);

  }


Adding a handler


void OnChartEvent(const int id,
                  const long &lparam,
                  const double &dparam,
                  const string &sparam)
  {
   if (id == CHARTEVENT_OBJECT_CLICK)
   {
   if(sparam == "Close") // button has been pressed
     {    
       ObjectSetInteger(0,"Close",OBJPROP_FONTSIZE,5);
      CloseAll();
      ObjectSetInteger(0,"Close",OBJPROP_FONTSIZE,10);
     }
    }

  }


Button press does not work in the strategy tester, in the demo it works - an error apparently

 

Good afternoon!

Can you please tell me how to change the tariff?

right now there is a current tariff for 1 month. 10 quid

I want to change to 3 months. 28$


Step 1. in the terminal mt4 right-click on the virtual server and select "cancel hosting".

Step 2. After that right click in the terminal mt4 on your trading account and select "Select virtual server" and then select a new tariff
i.e. create a new virtual server with new tariff


These steps? I understand correctly?

Thanks in advance!

Reason: