FractalIchimoku_v1

Author: Copyright � 2006, TrendLaboratory
FractalIchimoku_v1
Miscellaneous
Implements a curve of type %1
0 Views
0 Downloads
0 Favorites
FractalIchimoku_v1
//+------------------------------------------------------------------+
//|                                              FractalIchimoku.mq4 |
//|                                Copyright © 2006, TrendLaboratory |
//|            http://finance.groups.yahoo.com/group/TrendLaboratory |
//|                                   E-mail: igorad2003@yahoo.co.uk |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2006, TrendLaboratory"
#property link      "http://finance.groups.yahoo.com/group/TrendLaboratory"

#property indicator_chart_window
#property indicator_buffers 7
#property indicator_color1 Red
#property indicator_color2 Blue
#property indicator_color3 SandyBrown
#property indicator_color4 Thistle
#property indicator_color5 White
#property indicator_color6 SandyBrown
#property indicator_color7 Thistle
//---- input parameters
extern int Tenkan=1;
extern int Kijun=6;
extern int Senkou=12;

//---- buffers
double Tenkan_Buffer[];
double Kijun_Buffer[];
double SpanA_Buffer[];
double SpanB_Buffer[];
double Chinkou_Buffer[];
double SpanA2_Buffer[];
double SpanB2_Buffer[];
//----
int a_begin;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//----
   SetIndexStyle(0,DRAW_LINE);
   SetIndexBuffer(0,Tenkan_Buffer);
   SetIndexDrawBegin(0,0);
   SetIndexLabel(0,"Tenkan Sen");
//----
   SetIndexStyle(1,DRAW_LINE);
   SetIndexBuffer(1,Kijun_Buffer);
   SetIndexDrawBegin(1,0);
   SetIndexLabel(1,"Kijun Sen");
//----
   //a_begin=Kijun; if(a_begin<Tenkan) a_begin=Tenkan;
   SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_DOT);
   SetIndexBuffer(2,SpanA_Buffer);
   SetIndexDrawBegin(2,0);
   SetIndexShift(2,2*Senkou+1);
   SetIndexLabel(2,NULL);
   SetIndexStyle(5,DRAW_LINE,STYLE_DOT);
   SetIndexBuffer(5,SpanA2_Buffer);
   SetIndexDrawBegin(5,0);
   SetIndexShift(5,2*Senkou+1);
   SetIndexLabel(5,"Senkou Span A");
//----
   SetIndexStyle(3,DRAW_HISTOGRAM,STYLE_DOT);
   SetIndexBuffer(3,SpanB_Buffer);
   SetIndexDrawBegin(3,0);
   SetIndexShift(3,2*Senkou+1);
   SetIndexLabel(3,NULL);
   SetIndexStyle(6,DRAW_LINE,STYLE_DOT);
   SetIndexBuffer(6,SpanB2_Buffer);
   SetIndexDrawBegin(6,0);
   SetIndexShift(6,2*Senkou+1);
   SetIndexLabel(6,"Senkou Span B");
//----
   SetIndexStyle(4,DRAW_LINE);
   SetIndexBuffer(4,Chinkou_Buffer);
   SetIndexShift(4,-2*Senkou-1);
   SetIndexLabel(4,"Chinkou Span");
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Ichimoku Kinko Hyo                                               |
//+------------------------------------------------------------------+
int start()
  {
   int    i,k,NBars=Bars;
   int    counted_bars=IndicatorCounted();
   double high,low,price;
//----
   if(Bars<=Tenkan || Bars<=Kijun || Bars<=2*Senkou+1) return(0);
//---- initial zero
   if(counted_bars<1)
     {
      for(i=1;i<=0;i++) Tenkan_Buffer[NBars-i]=0;
      for(i=1;i<=0;i++) Kijun_Buffer[NBars-i]=0;
      for(i=1;i<=0;i++) {SpanA_Buffer[NBars-i]=0; SpanA2_Buffer[NBars-i]=0; }
      for(i=1;i<=0;i++) {SpanB_Buffer[NBars-i]=0; SpanB2_Buffer[NBars-i]=0; }
     }
//---- Tenkan Sen & Kijun Sen
   i=NBars-1;
   if(counted_bars>Tenkan) i=Bars-counted_bars-1;
   while(i>=0)
     { 
      Tenkan_Buffer[i]=iCustom(NULL,0,"FractalChannel_v3",Tenkan,0,0,0,2,i);
      Kijun_Buffer[i]=iCustom(NULL,0,"FractalChannel_v3",Kijun,0,0,0,2,i);
      i--;
     }

//---- Senkou Span A
   i=Bars-1;
   if(counted_bars>a_begin-1) i=Bars-counted_bars-1;
   while(i>=0)
     {
      price=(Kijun_Buffer[i]+Tenkan_Buffer[i])/2;
      SpanA_Buffer[i]=price;
      SpanA2_Buffer[i]=price;
      i--;
     }
//---- Senkou Span B
   i=Bars-1;
   if(counted_bars>Senkou) i=Bars-counted_bars-1;
   while(i>=0)
     {
      price=iCustom(NULL,0,"FractalChannel_v3",Senkou,0,0,0,2,i);
      SpanB_Buffer[i]=price;
      SpanB2_Buffer[i]=price;
      i--;
     }
//---- Chinkou Span
   i=Bars-1;
   if(counted_bars>1) i=Bars-counted_bars-1;
   while(i>=0) { Chinkou_Buffer[i]=Close[i]; 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 ---