Miscellaneous
0
Views
0
Downloads
0
Favorites
HLine Alert_once_per_bar
//+------------------------------------------------------------------+
//| HLine Alert.mq4 |
//+------------------------------------------------------------------+
#property copyright "raff1410@o2.pl"
//Alert once per bar added by Jack Hewings
#property indicator_chart_window
extern string LineName="MyLine1";
extern color LineColor=AliceBlue;
extern int LineStyle=STYLE_SOLID;
extern int AlertPipRange=1;
extern string AlertWav="alert.wav";
extern string Subject = "level 0";
extern string message = "level 0 reached";
//jjj
int LastAlert=0;
int NewAlert=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
ObjectCreate(LineName, OBJ_HLINE, 0, 0, Bid);
ObjectSet(LineName, OBJPROP_STYLE, LineStyle);
ObjectSet(LineName, OBJPROP_COLOR, LineColor);
NewAlert = 0;
double val = ObjectGet( LineName, OBJPROP_PRICE1);
if (Bid-AlertPipRange*Point <= val && Bid+AlertPipRange*Point >= val) NewAlert=1;
if ( NewAlert==1)
{
if (LastAlert == 0 || LastAlert < Bars )
{
PlaySound(AlertWav);
LastAlert = Bars;
}
}
//----
//----
return(0);
}
//+------------------------------------------------------------------+
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---