Pon "Me gusta" y sigue las noticias
Deje un enlace a él, ¡qué los demás también lo valoren!
Evalúe su trabajo en el terminal MetaTrader 5
- Visualizaciones:
- 8951
- Ranking:
- Publicado:
- 2008.12.24 07:49
- Actualizado:
- 2016.11.22 07:32
-
¿Necesita un robot o indicador basado en este código? Solicítelo en la bolsa freelance Pasar a la bolsa
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))); } }

Another Fibo indicator.

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

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

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.