prusax_v61_v1

prusax_v61_v1
Miscellaneous
Implements a curve of type %1
0 Views
0 Downloads
0 Favorites
prusax_v61_v1
//+------------------------------------------------------------------+ 
//| prusax_v2.mq4                                                    |
//| 2008 modified by zIG                                             |
//+------------------------------------------------------------------+ 
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 White
#property indicator_color2 White
#property indicator_color3 Red
#property indicator_color4 Red
#property indicator_width1 2
#property indicator_width2 2
#property indicator_width3 2
#property indicator_width4 2
//---- buffers 
double BufferUP[];
double BufferDN[];
double BufferUP1[];
double BufferDN1[];
//+------------------------------------------------------------------+ 
//| Custom indicator initialization function                         | 
//+------------------------------------------------------------------+ 
int init()
  {
   string short_name;
//---- indicator line 
   IndicatorBuffers(4);
   SetIndexStyle(0,DRAW_HISTOGRAM);
   SetIndexBuffer(0,BufferUP);
   SetIndexStyle(1,DRAW_HISTOGRAM);
   SetIndexBuffer(1,BufferUP1);
   SetIndexStyle(2,DRAW_HISTOGRAM);
   SetIndexBuffer(2,BufferDN);
   SetIndexStyle(3,DRAW_HISTOGRAM);
   SetIndexBuffer(3,BufferDN1);
   SetIndexDrawBegin(0,10);
   SetIndexDrawBegin(1,10);
   SetIndexDrawBegin(2,10);
   SetIndexDrawBegin(3,10);
//---- 
   return(0);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int start()
  {
   int i,counted_bars=IndicatorCounted();
   for(i=Bars-counted_bars-1;i>=0;i--)
     {
      if(i==0)
        {
         BufferUP[i]   =High[i];
         BufferUP1[i]  =(High[i]-(((High[i]-Open[i])+(Close[i]-Low[i]))/2));
         BufferDN[i]   =(High[i]-(((High[i]-Open[i])+(Close[i]-Low[i]))/2));
         BufferDN1[i]  =(High[i]-(((High[i]-Open[i])+(Close[i]-Low[i]))/2))-(((Open[i]-Low[i])+(High[i]-Close[i]))/2);
        }
      else
        {
         if(Close[i]>Open[i])
           {
            BufferUP[i]   =High[i];
            BufferUP1[i]  =Open[i];
            BufferDN[i]    =0.0;
            BufferDN1[i]   =0.0;
           }
         else
            if(Close[i]<Open[i])
              {
               BufferUP[i]   =0.0;
               BufferUP1[i]  =0.0;
               BufferDN[i]    =Open[i];
               BufferDN1[i]   =Low[i];
              }
        }
     }
//----
   return(0);
  }
//+------------------------------------------------------------------+ 

Comments

Markdown supported. Formatting help

Markdown Formatting Guide

Element Markdown Syntax
Heading # H1
## H2
### H3
Bold **bold text**
Italic *italicized text*
Link [title](https://www.example.com)
Image ![alt text](image.jpg)
Code `code`
Code Block ```
code block
```
Quote > blockquote
Unordered List - Item 1
- Item 2
Ordered List 1. First item
2. Second item
Horizontal Rule ---