Click on the market chart to create a price alert – indicator MetaTrader 5

Click on the market chart to create a price alert - indicator for MetaTrader 5
This an indicator which understands mouse click and keyboard press, and the purpose is to create alerts at the price that the market has not yet reached. It can be very helpful to be alerted when the price crosses a particular value. It can be used to validate theories in a trading system, or alert … Read more

iMAX3alert Fast trend alert indicator. – indicator MetaTrader 4

iMAX3alert Fast trend alert indicator. - indicator for MetaTrader 4
This version of the iMAX indicator is an example of how methods used in iMAX3 can be more fully developed into useful trading tools, especially programming the amplitude phase shifts for the higher speed hp trend detection modes introduced in iMAX3. This version is also liberally commented to aid in better understanding the mechanics of … Read more

The signal lines with alert after crossing – indicator MetaTrader 4

The signal lines with alert after crossing - indicator for MetaTrader 4
Author: Vladimir Hlystov When the price is approaching to the Signal Lines, the indicator sends Alert. The Signal Lines can have any angle. Initially, the Signal Lines are based on the straight lines of the support and resistance levels. Signal Lines can be moved to the desired place using the mouse . When the distance … Read more

pSAR alert – EA MetaTrader 4

pSAR alert - expert for MetaTrader 4
An expert advisor designed to alert you when every first parabolic SAR dot in a sequence appears. You must note that this expert advisor is not meant for opening or closing orders automatically but to just sound an alarm. Testing it with strategy tester will indicate no trades. pSAR alert – expert for MetaTrader 4

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

I-Regr Alert Notifier – indicator MetaTrader 4

I-Regr Alert Notifier - indicator for MetaTrader 4
Author: Nks A Notifier for I-Regr Indicator, It alerts when Price Breaks Up or Down I-Regr lines. Recommendations: I-Regr Indicator ChangeLog: V3(20/3/2011): Removed Custom Sound Notification as it didn’t work V2(15/3/2011): Added Custom Delay between Alarms Custom Notifier color chooser Custom I-Regr parameters I-Regr Alert Notifier – indicator MetaTrader 4

Trendline Price Alert – indicator MetaTrader 4

Trendline Price Alert - indicator for MetaTrader 4
Description: This indicator will draw two trendlines on the chart upon which it is placed. The trendlines, which may be moved around, act as upper and lower alert levels. When the mid-price crosses either level the warning alert will be triggered. Instructions: Choose the symbol you’re interested in and display it in a chart window … Read more