Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Twitter!
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Bibliotheken

Easy Object - Bibliothek für den MetaTrader 4

Ansichten:
8308
Rating:
(20)
Veröffentlicht:
2019.01.02 10:22
\MQL4\Include\
EasyObject.mqh (16.29 KB) ansehen
\MQL4\Scripts\
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum 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.