Miscellaneous
0
Views
0
Downloads
0
Favorites
NewTrend
//+------------------------------------------------------------------+
//| NewTrend_v1.mq4 |
//| Copyright © 2006, TrendLaboratory Ltd. |
//| http://finance.groups.yahoo.com/group/TrendLaboratory |
//| E-mail: igorad2004@list.ru |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, TrendLaboratory Ltd."
#property link "http://finance.groups.yahoo.com/group/TrendLaboratory"
#property indicator_buffers 2
//---- indicator settings
#property indicator_separate_window
#property indicator_level1 0.5
#property indicator_level2 -0.5
//----
#property indicator_color1 Silver
#property indicator_color2 Orange
//---- indicator parameters
extern int Smooth=9;
extern int Signal=9;
//---- indicator buffers
double Main_buffer[];
double Sign_buffer[];
double Fast_buffer[];
double Slow_buffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- drawing settings
IndicatorBuffers(3);
SetIndexBuffer(0,Main_buffer);
SetIndexBuffer(1,Sign_buffer);
SetIndexBuffer(2,Fast_buffer);
SetIndexBuffer(3,Slow_buffer);
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_LINE);
SetIndexDrawBegin(0,1);
SetIndexDrawBegin(1,1);
// IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));
//---- indicator buffers mapping
// if(!SetIndexBuffer(0,Macd_buffer) && !SetIndexBuffer(1,Sign_buffer))
// Print("cannot set indicator buffers!");
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("NewTrend("+Smooth+")");
SetIndexLabel(0,"Trend");
SetIndexLabel(1,"Signal");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| MACD (DEMA) DiNapoli |
//+------------------------------------------------------------------+
int start()
{
for(int i=Bars; i>=0; i--)
{
Fast_buffer[i]=0.0;
Slow_buffer[i]=0.0;
Main_buffer[i]=0.0;
Sign_buffer[i]=0.0;
//if (i==Bars) {Fast_buffer[i]=0;Slow_buffer[i]=0;}
}
//---- macd counted in the 1-st buffer
for( i=Bars-1; i>=0; i--)
{
if (Close[i+1]>0)
{
double vA=(Close[i] - Open[i])/Open[i]/Point;
double vB=(Open[i] - Close[i+1])/Close[i+1]/Point;
//
Fast_buffer[i]=Fast_buffer[i+1]+2.0/(1.0+Smooth)*(vA-Fast_buffer[i+1]);
Slow_buffer[i]=Slow_buffer[i+1]+2.0/(1.0+Smooth)*(vB-Slow_buffer[i+1]);
Main_buffer[i]=Fast_buffer[i]-Slow_buffer[i];
}
}
//---- signal line counted in the 2-nd buffer
for(i=Bars-1; i>=0; i--)
Sign_buffer[i]=Sign_buffer[i+1]+2.0/(1.0+Signal)*(Main_buffer[i]-Sign_buffer[i+1]);
//---- done
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
---