0
Views
0
Downloads
0
Favorites
ZigZag Trendlines
/*-----------------------------+
| |
| Shared by www.Aptrafx.com |
| |
+------------------------------*/
//+------------------------------------------------------------------+
//| ZigZag Trendlines.mq4 |
//| Copyright © 2005, tageiger aka fxid10t@yahoo.com |
//| MetaTrader_Experts_and_Indicators@yahoogroups.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, tageiger aka fxid10t@yahoo.com"
#property link "MetaTrader_Experts_and_Indicators@yahoogroups.com"
extern int ExtDepth =13;
int init(){return(0);}
int deinit(){return(0);}
int start(){
double low.1,high.1;
low.1=Low[Lowest(Symbol(),0,MODE_LOW,ExtDepth,(Bars-ExtDepth))];
Print(low.1);
return(0);
}//end start
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
---