Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
- Views:
- 32983
- Rating:
- Published:
- 2010.04.26 10:41
- Updated:
- 2014.04.21 14:54
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
Description:
The indicator alerts at order closing, and reports about its profit.
//+------------------------------------------------------------------+ //| AlertCloseOrder.mq4 | //| Copyright © 2010, Vladimir Hlystov | //| http://cmillion.narod.ru | //+------------------------------------------------------------------+ #property copyright "Copyright © 2010, Vladimir Hlystov" #property link "http://cmillion.narod.ru" #property indicator_chart_window int Orders; //+------------------------------------------------------------------+ int start() { if (Orders>OrdersTotal()) AlertOrder(); Orders=OrdersTotal(); return(0); } //+------------------------------------------------------------------+ void AlertOrder() { string txt; double OCP; int i=OrdersHistoryTotal()-1; if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY)==true) { OCP=OrderClosePrice(); if (OCP==OrderStopLoss() ) txt="SL"; if (OCP==OrderTakeProfit()) txt="TP"; Alert("Order N ",OrderTicket()," close in ",txt," ", DoubleToStr(OCP,Digits)," profit ",DoubleToStr(OrderProfit(),2)); } } //+------------------------------------------------------------------+
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/9642

Displaying of any instrument, synchronisation on bars or on days.

This a bollinger band indicator with an extra deviation level. If you keep the period at 25 and deviations of 1.0 and 2.0, It will show you all your resistance and support lines. And also overbought and oversold levels.

I have programmed an EA using Moving Average (from mt4 default Moving Average.mq4) to decide open buy/sell combine with StopLoss using the Money Management.

This EA will send an e-mail about your account details every xx minutes.