#property strict
#property indicator_chart_window
#property indicator_buffers 5
input int candle=1000;
input int count=1;
input int period=20;
input double dev=2;
input double procent=10;
datetime t=0;
double up[],dn[],bup[],bdn[],ma[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//--- indicator buffers mapping
Comment("");
SetIndexStyle(0,DRAW_ARROW,0,1,Aqua);
SetIndexArrow(0,108);
SetIndexBuffer(0,up);
SetIndexStyle(1,DRAW_ARROW,0,1,Red);
SetIndexArrow(1,108);
SetIndexBuffer(1,dn);
SetIndexStyle(2,DRAW_LINE,0,1,DarkSlateGray);
SetIndexBuffer(2,bup);
SetIndexStyle(3,DRAW_LINE,0,1,DarkSlateGray);
SetIndexBuffer(3,bdn);
SetIndexStyle(4,DRAW_LINE,0,1,DarkSlateGray);
SetIndexBuffer(4,ma);
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
double Delta()
{
double delta=0;
for(int i=1; i<count; i++)
{
delta=bup[i]-ma[i];
}
delta=delta/count;
return(delta);
}
//+------------------------------------------------------------------+
double Delta1()
{
double delta1=0;
for(int i=1; i<count; i++)
{
delta1=ma[i]-bdn[i];
}
delta1=delta1/count;
return(delta1);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
//---
double delta=0,pro=0;
if(t!=time[0])
{
for(int i=0; i<candle; i++)
{
bup[i]=iBands(NULL,0,period,dev,0,0,MODE_UPPER,i);
bdn[i]=iBands(NULL,0,period,dev,0,0,MODE_LOWER,i);
ma[i]=iBands(NULL,0,period,dev,0,0,MODE_MAIN,i);
delta=bup[i]-ma[i];
pro=(delta-Delta())*100/delta;
delta1=ma[i]-bdn[i];
pro1=(delta1-Delta1())*100/delta1
if(delta>Delta() && pro>procent && delta1>Delta1 && pro1>procent())
{
if(close[i]>bup[i])
{
up[i]=high[i];
}
if(close[i]<bdn[i])
{
dn[i]=low[i];
}
}
}
}
//--- return value of prev_calculated for next call
return(rates_total);
}
//+------------------------------------------------------------------+
← предыдущая следующая →
USDPump