How can I test to see if my broker allows me to do automatic trading or not? - page 2

 

How about you try an ea that opens an order ?

Then it's easy to see if it will work or not, don't you think ?

 
Marco vd Heijden:

How about you try an ea that opens an order ?

Then it's easy to see if it will work or not, don't you think ?

May you put a sample code for that?
 
MQL5 Code Base
MQL5 Code Base
  • www.mql5.com
This is a working singleton code example. The sole purpose of this post is to provide a working code sample of a singleton object. A singleton object is created when there 'can be only one' of the object. This is accomplished by making an object's constructor private, and ensuring assignment and copy operations are also private. I was working...