#property copyright "Copyright © 2007, lukas1"
#property link ""
#property indicator_chart_window
#property indicator_buffers 6
#property indicator_color1 LightPink
#property indicator_color2 LightSteelBlue
#property indicator_color3 LightPink
#property indicator_color4 LightSteelBlue
#property indicator_width1 2
#property indicator_width2 2
#property indicator_color5 Blue
#property indicator_color6 Magenta
extern int SSP = 75;
extern int SSK = 75;
extern bool Show_Middle = false;
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double Wal1[];
double Wal2[];
double ExtMapBuffer4[], ExtMapBuffer5[];
int i, j;
double SsMax, SsMin, SsMax05, SsMin05, Rsmin, Rsmax,
Tsmin, Tsmax;
double Day_max, Day_min;
int val1, val2, AvgRange, day_bars, day_Range,
delta_from_max, delta_from_min, spred;
string comm, sutki;
int init()
{
IndicatorBuffers(8);
SetIndexStyle(0, DRAW_LINE);
SetIndexBuffer(0, ExtMapBuffer1);
SetIndexDrawBegin(0, SSP*2);
SetIndexLabel(0, "priority line");
SetIndexStyle(1, DRAW_LINE);
SetIndexBuffer(1, ExtMapBuffer2);
SetIndexDrawBegin(1, SSP*2);
SetIndexLabel(1, "overdue line");
SetIndexStyle(2, DRAW_HISTOGRAM);
SetIndexBuffer(2, Wal1);
SetIndexDrawBegin(2,SSP*2);
SetIndexStyle(3, DRAW_HISTOGRAM);
SetIndexBuffer(3, Wal2);
SetIndexDrawBegin(3,SSP*2);
SetIndexStyle(4, DRAW_LINE);
SetIndexBuffer(4, ExtMapBuffer4);
SetIndexDrawBegin(4,SSP*2);
SetIndexLabel(4,"stop-order line");
SetIndexStyle(5, DRAW_LINE);
SetIndexBuffer(5, ExtMapBuffer5);
SetIndexDrawBegin(5,SSP*2);
SetIndexLabel(5,"middle line");
return(0);
}
void deinit()
{
Comment("");
}
int start()
{
comm= "";
int counted_bars = IndicatorCounted();
if(Bars <= SSP + 1)
return(0);
i = Bars - SSP;
while(i >= 0)
{
SsMax = High[iHighest(NULL, 0, MODE_HIGH, SSP, i)];
SsMin = Low[iLowest(NULL, 0, MODE_LOW, SSP, i)];
SsMax05 = High[iHighest(NULL, 0, MODE_HIGH, SSP, i + SSK)];
SsMin05 = Low[iLowest(NULL, 0, MODE_LOW, SSP, i + SSK)];
ExtMapBuffer1[i] = (SsMax + SsMin) / 2;
ExtMapBuffer2[i] = (SsMax05 + SsMin05) / 2;
val1 = ExtMapBuffer1[1] / Point;
val2 = ExtMapBuffer2[1] / Point;
Rsmax = High[iHighest(NULL, 0, MODE_HIGH, SSP*2, i)];
Rsmin = Low[iLowest(NULL, 0, MODE_LOW, SSP*2, i)];
Wal1[i] = ExtMapBuffer1[i];
Wal2[i] = ExtMapBuffer2[i];
Tsmax = High[iHighest(NULL, 0,MODE_HIGH, SSP*1.62, i)];
Tsmin = Low[iLowest(NULL, 0, MODE_LOW, SSP*1.62, i)];
ExtMapBuffer4[i] = (Tsmax + Tsmin) / 2;
if(Show_Middle)
{
ExtMapBuffer5[i] = ((SsMax + SsMin) / 2 +
(SsMax05 + SsMin05) / 2 ) / 2;
}
i--;
}
day_bars = MathCeil(1440 / Period());
sutki = "day";
if(Period() == 1440)
{
sutki = "week";
day_bars = 5;
}
if(Period() == 10080)
{
sutki = "month";
day_bars = 4;
}
if(Period() == 43200)
{
sutki = "year";
day_bars = 12;
}
j = SSP*2 + 1;
while(j >= 0)
{
Day_max = High[iHighest(NULL, 0,MODE_HIGH, day_bars, j + 1)];
Day_min = Low[iLowest(NULL, 0, MODE_LOW, day_bars, j + 1)];
j--;
}
AvgRange = (Rsmax / Point) - (Rsmin / Point);
day_Range = (Day_max / Point) - (Day_min / Point);
delta_from_max = (Day_max-Bid) / Point;
delta_from_min = (Bid - Day_min) / Point;
comm = " parameters SSP , SSK = " + SSP + " , " + SSK + " ;\n" +
" volatility (for " + SSP*2 + " bars) : " +
AvgRange + " п.\n" + "\n" +
" range for " + sutki + " (for " + day_bars +
" bars) : " + day_Range + " п.\n" +
" deviation from maximum for " + sutki + ": " +
delta_from_max + " п.\n" +
" deviation from minimum for " + sutki + ": " +
delta_from_min + " п.\n";
Comment(comm);
return(0);
}