Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 32994
- Note:
- Publié:
- 2010.04.26 10:41
- Mise à jour:
- 2014.04.21 14:54
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur 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)); } } //+------------------------------------------------------------------+
Traduit du russe par MetaQuotes Ltd.
Code original : 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.