Une image pour le forum sur les méta-citations - page 58

 
Les tableaux de bord se détachent

 

Souhaits pour un MT5

 

Vidéo : Comment rendre plus de personnages disponibles dans le terminal ?


 

Comment vérifier les fonctions du compte - Informations sur le compte

Script 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);
  }
//+------------------------------------------------------------------+


 

Vidéo : Comment visualiser les transactions (points d'entrée et de sortie) sur un graphique de prix ?


 

Comment exécuter un EA sur un graphique hors ligne avec un horizon temporel non standard.

Dans le fichier WinUser32.mqh, insérez la ligne suivante

   int      RegisterWindowMessageA(string lpstring);

Dans le script period_converter.mq4, insérez la ligne suivante

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

et une ligne

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

Détails sur la vidéo.




 
Parabolique lissée

Dossiers :
 

Comment ouvrir un tutoriel s'il a été verrouillé par le système de sécurité.

Le déverrouillage se fait dans les propriétés du fichier en appuyant sur le bouton Déverrouiller. Voir la vidéo.



Pour ouvrir un manuel scolaire

 

Comment se connecter à un compte sur ATC 2008.


 

Comment changer rapidement le symbole sur le graphique.