Singleton Example – EA MetaTrader 4

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 on an EA and identified that an object should never have more than one copy. I don’t expect the EA to ever get large enough for it to actually matter that a singleton is used, but I like the clarity in the code for the object’s type. Some programmers argue against the use of singletons, but I think the technical reasons for not using them are mostly resolved with newer compiler technology. It didn’t seem like anyone had provided an example of this functionality in this environment — I found only an old reference in the Code Base from before private static variable initialization was supported by the compiler — as you can see in this example, this functionality works well today.

Alternative:  News Hour Trade - EA MetaTrader 4

Comments or contributions for improving the code are always welcome.

Running Singleton Example

📈 ROBOTFX MetaTrader Expert Advisors and Indicators to maximize profits and minimize the risks