Indicators Used
Miscellaneous
0
Views
0
Downloads
0
Favorites
Thread_Hist_1
//+--------------------------------------------------------------+
//| Thread_Hist_1.mq4 |
//| Based on Spudfyre's Thread theory |
//| Display Stochastics rainbow based on different periods. |
//| |
//| emda |
//+--------------------------------------------------------------+
//| |
//| Remake for Alert-Signal"X" by kamita |
//+--------------------------------------------------------------+
#property copyright "Copyright ? 2007, Spudfyre & Emda"
#property link "http://www.forexfactory.com/showthread.php?t=37111"
//----
#property indicator_separate_window
#property indicator_minimum 0
#property indicator_maximum 100
#property indicator_buffers 3
#property indicator_color1 DarkGray
#property indicator_width1 3
#property indicator_color2 OrangeRed
#property indicator_width2 3
#property indicator_color3 Blue
#property indicator_level1 10.0
#property indicator_level2 15.0
#property indicator_level3 0
#property indicator_level4 0
#property indicator_levelcolor Gray
//---- input parameters
extern double Limit = 6.0;
//---- buffers
double BufferDelta[];
double Buffer_UP[];
double Buffer_DN[];
//+--------------------------------------------------------------+
//| Custom indicator initialization function |
//+--------------------------------------------------------------+
int init()
{
IndicatorBuffers(8);
SetIndexStyle(0, DRAW_HISTOGRAM);
SetIndexBuffer(0, BufferDelta);
SetIndexBuffer(1, Buffer_UP);
//SetIndexStyle(1, DRAW_LINE);
SetIndexStyle(1, DRAW_ARROW);
SetIndexArrow(1, 251);
SetIndexStyle(2, DRAW_LINE);
SetIndexBuffer(2, Buffer_DN);
//---- name for DataWindow and indicator subwindow label
string short_name;
short_name="Thread_Hist_Alert";
IndicatorShortName(short_name);
SetIndexLabel(0, "MPS wall");
return(0);
}
//-----------------------------------------------------------
int start()
{
int counted_bars=IndicatorCounted();
if (counted_bars<0) return(-1);
if (counted_bars>0) counted_bars--;
int pos=Bars-counted_bars;
//---- main calculation loop
while(pos>=0)
{
double sl1 = iStochastic(NULL,0,5,3,3,0,0,0,pos);
double sl2 = iStochastic(NULL,0,9,3,3,0,0,0,pos);
double sl3 = iStochastic(NULL,0,11,3,3,0,0,0,pos);
double swa = iStochastic(NULL,0,14,3,3,0,0,0,pos);
double su1 = iStochastic(NULL,0,17,3,3,0,0,0,pos);
double su2 = iStochastic(NULL,0,20,3,3,0,0,0,pos);
double su3 = iStochastic(NULL,0,24,3,3,0,0,0,pos);
double smatrix[7];
smatrix[0]=su1;
smatrix[1]=su2;
smatrix[2]=su3;
smatrix[3]=swa;
smatrix[4]=sl1;
smatrix[5]=sl2;
smatrix[6]=sl3;
double maxstoch = smatrix[ArrayMaximum(smatrix)];
double minstoch = smatrix[ArrayMinimum(smatrix)];
BufferDelta[pos]=maxstoch-minstoch;
if( BufferDelta[pos]<Limit ) Buffer_UP[pos]=80;
pos--;
}
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
---