메타 인용에 대한 포럼 사진 - 페이지 58

 
대시보드 떨어져

 

MT5에 대한 소원

 

비디오: 터미널에서 더 많은 문자를 사용할 수 있게 하는 방법은 무엇입니까?


 

계정 인증 기능 테스트 방법 - 계정 정보

스크립트 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 ) ;
   }
//+------------------------------------------------------------------+


 

비디오: 가격 차트에서 거래(진입 및 종료 지점)를 보는 방법


 

비표준 기간의 오프라인 차트에서 어드바이저를 실행하는 방법.

WinUser32.mqh 파일에 라인 삽입

   int        RegisterWindowMessageA ( string lpstring ) ;

period_converter.mq4 스크립트에 줄을 삽입합니다.

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

그리고 라인

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

비디오에 대한 세부 정보.




 
평활 포물선

파일:
 

ATC 2008 에서 계정에 연결하는 방법.


 

차트에서 기호를 빠르게 변경하는 방법.


 
플래시 드라이브에서 그래프를 보는 방법