거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Profits your EA(s) have made on your account - MetaTrader 4용 지표

조회수:
20508
평가:
(3)
게시됨:
2011.07.18 08:21
업데이트됨:
2014.04.21 14:55
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Description:

The combination of the two indicators are showing the profits your EA has made at a certain period

YourEAHistoryProfits will be showed on the main chart You can choose colors, fontsize, fonttype and where on the chart to place.

Version one will have maximal 5 magicnumbers to input and it has not the opportunity to show the EAname(s) on the chart

It was made to show the profit of one EA with different Magicnumbers

See picture....



Maximal 10 magicnumbers for version 2. It takes the profits all symbols or only the chartsymbol for calculating the profits of the closed trades in the history of your account. With the magicnumber you can also place the EAname....

  • extern string datetobegin= "year1_month_day";
  • extern datetime firstday=D'2011.05.01';// 1 may 2011
  • extern string finishday= "year2_month_day";
  • extern datetime lastday=D'2011.08.01';
  • extern string All_Pairs= "True: All Pairs -- False: Chart Symbol()";
  • extern bool All_pairs= True;
  • extern int Magic1 = 0;
  • extern string EAnameMagic1 = "";

......................

  • extern int yline = 10; //go down chart with higher input
  • extern int xcolom1 = 10; // place more to the right higher the volume
  • extern int xcolom2 = 150;
  • extern color TotalsUpColor = Lime;
  • extern color TotalsDnColor = Red; // different colors for up and down last closed trade
  • extern color ProfitUpColor = Green;
  • extern color ProfitDnColor = Red;
  • extern color DefaultColor = Blue;
  • extern string note3 = "Font Size";
  • extern int MagicNrsSize=8;
  • extern int EAnameSize=10;

This is a little of the code from YourEAHistoryProfits the fonttype is also to choose

EA Profits is an indicator that is placed in a separate window

This indicator shows the closed trade results and the results of the open trades.

Fibo Moving Average Fibo Moving Average

Calculates the Moving average indicator based on Fibonacci value.

Intraday EA Intraday EA

A 15min intrday trading strategy

EA_Fibo_Avg EA_Fibo_Avg

EA based on the indicator Fibo-Average-2B.mq4

204060 Program AIGrid System 204060 Program AIGrid System

Grid is a money maker in weak market, while a disaster in trending market. Maybe you can consider close all positions at some time, and run it totally again at another time, just like a fisher. This is AIGrid System With Manual Control.