Meta alıntılarla ilgili forum için resim - sayfa 58

 
Gösterge tabloları çıkıyor

 

MT5 için dilekler

 

Video: Terminalde daha fazla karakter nasıl kullanılabilir hale getirilir?


 

Hesap doğrulama işlevleri nasıl test edilir - Hesap Bilgileri

Komut Dosyası CheckAccountFunctions.mq4 :

 //+------------------------------------------------------------------+
//|                                        CheckAccountFunctions.mq4 |
//|                      Copyright © 2007, MetaQuotes Software Corp. |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright " Copyright © 2007, MetaQuotes Software Corp. "
#property link        " http://www.metaquotes.net "
 
//+------------------------------------------------------------------+
//| script program start function                                    |
//+------------------------------------------------------------------+
int start ()
   {
//----
   string MarginLevel ;
   string CommentString = StringConcatenate ( " Account Number = " , AccountNumber () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountCurrency= " , AccountCurrency () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountCompany= " , AccountCompany () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountName= " , AccountName () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountServer= " , AccountServer () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountStopoutLevel= " , AccountStopoutLevel () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountStopoutMode= " , AccountStopoutMode () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountBalance()= " , AccountBalance () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountMargin= " , AccountMargin () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountEquity= " , AccountEquity () , " \n " ) ;
   CommentString = StringConcatenate ( CommentString , " AccountLeverage= " , AccountLeverage () , " \n " ) ;
   
   if ( AccountMargin () > 0 ) MarginLevel = StringConcatenate ( " MarginLevel= " , DoubleToStr ( AccountEquity () / AccountMargin () * 100 , 2 ) , " % " ) ;
   else MarginLevel = " MarginLevel=N/A " ;
 
   CommentString = StringConcatenate ( CommentString , MarginLevel ) ;
   Comment ( CommentString ) ;   
//----
   return ( 0 ) ;
   }
//+------------------------------------------------------------------+


 

Video: Bir fiyat tablosunda işlemler (giriş ve çıkış noktaları) nasıl görüntülenir?


 

Standart olmayan bir zaman diliminin çevrimdışı grafiğinde bir danışman nasıl çalıştırılır.

Satırı WinUser32.mqh dosyasına ekleyin

   int        RegisterWindowMessageA ( string lpstring ) ;

Satırı period_converter.mq4 komut dosyasına ekleyin

   int MT4InternalMsg = RegisterWindowMessageA ( " MetaTrader4_Internal_Message " ) ; //incoming tick for EAs

ve çizgi

             PostMessageA ( hwnd , MT4InternalMsg , 2 , 1 ) ; //incoming tick for EAs

Detaylar videoda.




 
düzleştirilmiş parabolik

Dosyalar:
 

Güvenlik sistemi tarafından engellenmişse bir ders kitabı nasıl açılır.

Engellemeyi kaldırma, Dosya özelliklerinde Engellemeyi Kaldır düğmesine tıklanarak yapılır. Videoya bakın.



açık öğretici

 

ATC 2008'de bir hesaba nasıl bağlanılır .


 

Grafikteki sembol nasıl hızlı bir şekilde değiştirilir.