Watch how to download trading robots for free
Find us on Twitter!
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

MiniVirtualAccount - library for MetaTrader 4

Views:
8343
Rating:
(18)
Published:
2008.12.24 07:49
Updated:
2016.11.22 07:32
\MQL4\Include\
MVA_v1_0_3.mqh (6.69 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Author:

Russell

At times one wants to see how an EA is performing without the clutter from other EA's you're running. MiniVirtualAccount (MVA) monitors data in your EA. Like EA Balance, EA equity, EA profit, etc.

Full List:

MVA_BALANCE
MVA_PROFIT
MVA_MARGIN
MVA_FREEMARGIN
MVA_EQUITY
MVA_TOTAL_SELL
MVA_TOTAL_BUY
MVA_LOT_PROFIT


Example code:


#include <MVA_v1.0.3.mqh>


extern string General = "---------------";
extern int    Slippage = 2;
extern int    MagicNumber = 74783;
//etc

int giSlippage, giMagicNumber; 


int init(){
      
   giSlippage     = Slippage;
   giMagicNumber  = MagicNumber;    
   //etc

   MVA_init(giMagicNumber);
 
   return(0);
}

int deinit(){
   return(0);
}

int start(){
   
   //manage trades SL + TP   
   
   MVA_main(0, giMagicNumber, PUT); 
   
   if (start_filter() == FALSE){
      showComments();
      return(0);
   }

   
   double ldFreeMargin = MVA_main(MVA_FREEMARGIN, giMagicNumber);
   double ldEquity = MVA_main(MVA_EQUITY, giMagicNumber);
   double ldLots = lotSize(ldFreeMargin, ldEquity, giMagicNumber);
   if (ldLots == 0){
      showComments();
      return(0);
   }
    
   // other code to open

   showComments();
   return(0);
}

void showComments(){
   
   if (IsOptimization() == FALSE){
      Comments(StringConcatenate(
      "Balance : ",    MVA_main(MVA_BALANCE,     giMagicNumber),
      "\nEquity : ",     MVA_main(MVA_EQUITY,      giMagicNumber),
      "\nMargin : ",     MVA_main(MVA_MARGIN,      giMagicNumber),
      "\nFreeMargin : ", MVA_main(MVA_FREEMARGIN,  giMagicNumber)));      
   }
}

Waddah Attar Weekly Fibo Waddah Attar Weekly Fibo

Another Fibo indicator.

Backbone Backbone

The EA is based on the permanent variation of the direction of the trades depending on the TakeProfit, StopLoss and TrailingStop levels. It demonstrates how to create a profitable trading system without any indicators, mathematical models and other wisdom

MultiNeyro MultiNeyro

The algorithm of tuning (optimization) by two ranges with the two-level three-stage optimization is used in the EA.

Ryan_Jones_SM Ryan_Jones_SM

It shows where to buy and where to sell via the arrows. If a trend occurs then it will bring profit, if there is no trend, there will be no profit.