Alert at Order Closing – indicator MetaTrader 4

Alert at Order Closing - indicator for MetaTrader 4
Description: The indicator alerts at order closing, and reports about its profit. //+——————————————————————+ //|                                              AlertCloseOrder.mq4 | //|                               Copyright © 2010, Vladimir Hlystov | //|                                         | //+——————————————————————+ #property copyright “Copyright © 2010, Vladimir Hlystov” #property link      “” #property indicator_chart_window int Orders; //+——————————————————————+ int start()   {    if (Orders>OrdersTotal()) AlertOrder();    Orders=OrdersTotal();    return(0);   } //+——————————————————————+ void AlertOrder() { … Read more

Candle Closing Time Remaining (CCTR) Version 3 – indicator MetaTrader 4

Weekly timeframe
Candle Closing Time Remaining (CCTR) is an indicator which displays the remaining time for an open candle to be closed. Features Changeable color and size. Changeable location (Corners). Display server time (on OR off) [v2]. Play an alert sound when the candle is going to close [v3]. Clean code. Screen Shots The indicator will be … Read more

Pivot Point with adjustable closing time – indicator MetaTrader 4

PP indicator in EURUSD h1, you can see that actual weekly PP are wrong.
PP indicator on daily (weekly, monthly) level, for use in timeframes smaller than daily. I’ll skip the part discussing its basic use in trading, you can find that information here: Custom deviations from ordinary PP indicators: Sunday bars for those data feeds starting on sundays at 22:00 UTC eliminated. Close time used for calculation is … Read more

Candle Closing Time Remaining (CCTR) MT5 – indicator MetaTrader 5

Weekly timeframe
Candle Closing Time Remaining (CCTR) MT5 is an indicator which displays the remaining time for an open candle to be closed. Features Changeable color and size. Changeable location (Corners). Display server time (on OR off) [v2]. Play an alert sound when the candle is going to close [v3]. Clean code. Screen Shots The indicator will … Read more

Function to get Next Open Time and Closing Time for the market. – library MetaTrader 5

Function to get Next Open Time and Closing Time for the market. - library for MetaTrader 5
A Simple Call to this function will return the next Opening Time and Closing Time of the Asset, if no from time input it will search following the current Trade Server Time.  Usage: GetOpeningTimes(Open_Time, Close_Time, time); // where time is the from time GetOpeningTimes(Open_Time, Close_Time); // searches from current time… Enjoy… Function to get Next … Read more

Candle Closing Time Notify Alarm – indicator MetaTrader 5

Candle Closing Time Notify Alarm - indicator for MetaTrader 5
Notifies you at your specified Chart Time Indicator can be used to set alarm at a specified time on the chart. In the default setting I am using it for a chart of GMT server time. I have set the indicator time to notify me 5 minutes before H4 Candle closing (in LocalTIme) The indicator … Read more

closing partially script and Stop loss to Break Even point – script MetaTrader 5

par
closing partially script  and Stop loss to Break Even point Input Parameters are as follows. input bool ParticalClosed=false; input int ClosedVolume=50;//Percentage of Lots to Close % input string ack=”Type 50 for 50%”; input bool  StopMoveToBE=false; input int   AddBreakEventPips=10;// opening price +1 Pips closing partially script and Stop loss to Break Even point – script MetaTrader … Read more

Closing all open trades if all one symbol and one trade direction – script MetaTrader 4

Closing all open trades if all one symbol and one trade direction - script for MetaTrader 4
All open trades must be of same symbol and type, e.g. all GBPUSD and all BUY. This script will close out your position using one large trade to hedge your position then using CloseBy() function to close all trades against the one large trade until all trades are closed. There can be a maximum of … Read more