Miscellaneous
0
Views
0
Downloads
0
Favorites
palka
//+------------------------------------------------------------------+
//| Palka.mq4 |
//+------------------------------------------------------------------+
#property copyright "© Maloma"
#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Magenta
extern int PPeriod=13;
double LineBuffer[];
int init()
{
SetIndexBuffer(0,LineBuffer);
SetIndexStyle(0,DRAW_SECTION,EMPTY,2);
SetIndexEmptyValue(0,0.0);
SetIndexLabel(0,"Line");
IndicatorShortName("Palka");
return(0);
}
int deinit()
{
return(0);
}
int start()
{
for(int i=Bars;i>=0;i--) LineBuffer[i]=0;
LineBuffer[0]=Close[0];
LineBuffer[PPeriod]=Close[PPeriod];
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
---