Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Libraries

Easy Object - library for MetaTrader 4

Views:
8311
Rating:
(20)
Published:
2019.01.02 10:22
\MQL4\Include\
EasyObject.mqh (16.29 KB) view
\MQL4\Scripts\
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

A simple class to simplify working with objects.

It was like this:

 ObjectCreate ( 0 , "name" , OBJ_TEXT , 0 , 0 , 0 );
 ObjectSetString ( 0 , "name" , OBJPROP_TEXT , "Hello, World!" );
 ObjectSetString ( 0 , "name" , OBJPROP_FONT , "Calibri" );
 ObjectSetInteger ( 0 , "name" , OBJPROP_FONTSIZE , 16 );
 ObjectSetInteger ( 0 , "name" , OBJPROP_COLOR , clrLimeGreen );
 ObjectSetInteger ( 0 , "name" , OBJPROP_ANCHOR , ANCHOR_LEFT_LOWER );
 ObjectSetInteger ( 0 , "name" , OBJPROP_TIME , TimeCurrent ());   // * 
 ObjectSetDouble ( 0 , "name" , OBJPROP_PRICE , Ask );             // * 
 // *For moving the object after creation

It became so:

_( "name" )               // ! name is required
 .type( OBJ_TEXT )        // ! type is required
 .text( "Hello, World!" )
 .font( "Calibri" )
 .fontSize( 16 )
 .colour( clrLimeGreen )
 .anchor( ANCHOR_LEFT_LOWER )
 .time( TimeCurrent ())
 .price( Ask );

The result:

Hello, World!

Method names for the most part coincide with standard constants.

Heikin Ashi Trader Heikin Ashi Trader

"Heikin Ashi Trader" EA trades with a strategy based on Heikin Ashi indicator (not visible) and has Trailing Stop Loss &Take Profit works best on 1D time frames major forex pairs and stocks NASDAQ.

Fractals and Alligator Fractals and Alligator

"Fractals & Alligator" EA trades with a strategy based on Fractals & Alligator indicators and has Trailing Stop Loss &Take Profit works 1D time frames major forex pairs and stocks NASDAQ.

Hedg System Hedg System

"Hedg System" EA trades with hedging strategy two trades at any given time: Buy and Sell ,works best on 1D time frames major forex pairs .

Macd Power Macd Power

"Macd Power" trades with 2 " Macd " indicators has virtual Stop Loss & Take Profit works on 4H & 1D time frames major forex pairs and stocks NASDAQ.