Viewing Trade History on MT4 Terminal

Jul 14, 2015 at 14:37
3,951 개의 뷰
8 Replies
Jun 23, 2014 부터 멤버   게시물12
Jul 14, 2015 at 14:37
Hi All,

Is there a way to view my trade history for a pair on my MT4 platform? Please advise.

Best Regards.
Keep Learning and better your best!!
DGSCALPER
forex_trader_262580
Jul 13, 2015 부터 멤버   게시물9
Jul 15, 2015 at 08:38
Your account history?
Jun 23, 2014 부터 멤버   게시물12
Jul 15, 2015 at 20:33
Dear DGSCALPER,

Thanks for your input. Yes, I would like to view specific historical trades for a specific pair on my charts. I hoped their is a script one can use rather than manually placing historical trades on the chart, for study purposes. Thanks again. Am still Looking forward to this.
Keep Learning and better your best!!
Mar 02, 2010 부터 멤버   게시물97
Jul 16, 2015 at 03:52
double PairProfitLossHistory(){
   double pairprofitlosshistory=0,buyprofithistory=0,sellprofithistory=0;
   for(cnt=0;cnt<OrdersHistoryTotal();cnt++){
    if(OrderSelect(cnt,SELECT_BY_POS,MODE_HISTORY))
     if(OrderSymbol()==Symbol()){
       if(OrderType()==OP_BUY)buyprofithistory=buyprofithistory+OrderProfit()+OrderSwap()+OrderCommission();
       if(OrderType()==OP_SELL)sellprofithistory=sellprofithistory+OrderProfit()+OrderSwap()+OrderCommission();
        pairprofitlosshistory=buyprofithistory+sellprofithistory;
      }
   }
   return(pairprofitlosshistory);
 }
ixbone@
forex_trader_25447
Dec 21, 2010 부터 멤버   게시물131
Jul 16, 2015 at 06:36 (편집됨 Jul 16, 2015 at 06:39)
@DGSCALPER
Try this : https://www.forexfactory.com/showthread.php?t=46668
... link at the bottom of the last post
I think, that is what you want :
Feb 17, 2014 부터 멤버   게시물18
Jul 16, 2015 at 07:39
Indeed my friend, just add this indicator, it will also show you open trades.


첨부 파일:

Jun 23, 2014 부터 멤버   게시물12
Jul 16, 2015 at 18:38
'@DGSCALPER
Try this : https://www.forexfactory.com/showthread.php?t=46668
... link at the bottom of the last post
I think, that is what you want '
    @StoneHeart That's right. You got it. I have just tried it and it works on my Demo account. It however does not work on my Live account. Only gives an Alert: 'No trades displayed for this chart symbol!....'. Does it work for you on a live account? Any ideas how to make it work? Thanks a lot!


@IXBONE Thanks for the script. Quite insightful!! Thanks Again!

@iguy You have just made my day!! I never thought this was possible. It is Clear and neat! Thanks buddy. Now if only it could search through the OrdersHistory and print them on my terminal?! Thanks a lot.
Keep Learning and better your best!!
Aug 28, 2011 부터 멤버   게시물4
Jul 19, 2015 at 06:23
https://www.mql5.com/ru/code/10242
its my indikator.
he draw your orders from history on graf.
Jun 23, 2014 부터 멤버   게시물12
Aug 04, 2015 at 18:27
@urdala
Thank you very much! You have solved my problem.
Keep Learning and better your best!!
로그인 / 가입하기 to comment
You must be connected to Myfxbook in order to leave a comment
*상업적 사용 및 스팸은 허용되지 않으며 계정이 해지될 수 있습니다.
팁: 이미지/유튜브 URL을 게시하면 게시물에 자동으로 삽입됩니다!
팁: @기호를 입력하여 이 토론에 참여하는 사용자 이름을 자동으로 완성합니다.