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