Indicators Used
Miscellaneous
2
Views
0
Downloads
0
Favorites
Yaanna
//+------------------------------------------------------------------+
//| Yaanna.mq4 |
//| Copyright © 2009, Victor Chebotariov |
//| http://www.chebotariov.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2009, Victor Chebotariov"
#property link "http://www.chebotariov.com"
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Green
//---- input parameters
extern int BBPeriod=200;
//---- buffers
double ExtMapBuffer1[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
IndicatorShortName("Yaanna ("+BBPeriod+")");
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Yaanna |
//+------------------------------------------------------------------+
int start()
{
int i,counted_bars=IndicatorCounted();
//----
i=Bars-counted_bars-1;
while(i>=0)
{
double highbb = iBands(NULL,0,BBPeriod,2,0,PRICE_LOW,MODE_UPPER,i);
double lowbb = iBands(NULL,0,BBPeriod,2,0,PRICE_LOW,MODE_LOWER,i);
double close = Close[i];
double ma = iMA(NULL,0,BBPeriod,0,0,0,i);
double visota = (highbb-lowbb); // âûñîòà == 100%
if(visota==0){visota=1;}
double pclose = (close-lowbb); // öåíà
double enter = pclose/visota*100;
ExtMapBuffer1[i]=enter;
i--;
}
//----
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
---