Fans of GUOs - page 5

 
another convenience... removing the "consequences" of pending orders:)))

//+------------------------------------------------------------------+
//|                                                 Arrow_Delete.mq4 |
//|                                                        komposter |
//|                                      mailto:komposterius@mail.ru |
//+------------------------------------------------------------------+
#property copyright "komposter"
#property link      "mailto:komposterius@mail.ru"

int start()
{

	string obj_name;
	for ( int z = 200000; z <= 250000; z ++ )
	{
		obj_name = "#" + z + " sell close";
		ObjectDelete ( obj_name );
		obj_name = "#" + z + " buy close";
		ObjectDelete ( obj_name );
		obj_name = "#" + z + " sell limit";
		ObjectDelete ( obj_name );
		obj_name = "#" + z + " sell stop";
		ObjectDelete ( obj_name );
		obj_name = "#" + z + " buy limit";
		ObjectDelete ( obj_name );
		obj_name = "#" + z + " buy stop";
		ObjectDelete ( obj_name );
		obj_name = "#" + z + " sl";
		ObjectDelete ( obj_name );
		obj_name = "#" + z + " tp";
		ObjectDelete ( obj_name );
	}

Print("Удаление прошло успешно!");
return(0);
}



when order numbers will exceed 250000, you have to put numbers 250000 and 300000 ( for example )...

this is for the methaquot server. who has a different one, you can guess it yourself =)

 
2komposter

come over to ICQ:)
 
I get the impression that my labour has gone to waste..... :)

At least tell me what you don't like, I'll calm down :-)))
 
Sorry komposter, I haven't got around to it yet.
And you do it all for yourself and for your daily use.
I think that's the main motivation :)
 
And you do it all for yourself and for your daily use

Not just for that... I mean I will use it, but I'm not so critical to create masterpieces =)))
For me the main motivation is MQL IV to understand, feel..... and people feel good...at least - it should have been |:-)
 
[quote]
I mean, I'll use it, but I'm not so critical to create masterpieces =)))<br/ translate="no">


You are right. I support you completely. What you are doing is really useful. When working inside the day it is sometimes necessary. Six months ago I thought of doing such a thing in MQL2. I even formulated technical requirements and requirements specification. But I have not got around to it. Then MT4 appeared and we are still working on it.

To make it short. HOLD UP ! WE KNOW WHAT WE NEED. So let everyone be stronger :)
 
evg, I support the knowledge!
Only the script needs to be tested, to find errors... It would be desirable if Renat told me what other checks are needed.
And users comment on the usability and appearance...

And while I can not put it at least in the directory - raw yet.....
 
I made it today :))))<br / translate="no">maybe it's just a quickie......

Check it out gentlemen!

Try to use the new in-house MessageBox() function - this will avoid calling the DLL libraries.
 
Preferably, Renat should say what other checks are needed.

Unfortunately, I don't have time to keep track of it yet.
 
Try using the new in-house MessageBox() function

Thanks, I'll redo it now.
Unfortunately, I don't have time to keep track of it yet

Sorry... If you have time, please take a look at it later.