paromon2





//+------------------------------------------------------------------+
//| Par_Test.mq4 |
//| Danilla |
//| |
//+------------------------------------------------------------------+
#property copyright "Danilla"
#property link ""

#property indicator_chart_window


int DayOffset = 7200; // 2 hours
int DayExtremumsOffset = 3600;
int DayExtremumsOffsetStartTime = 36000; //10:00 AM
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//----

IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)); 

SetIndexStyle(0, DRAW_LINE, STYLE_SOLID, 0, Red);
ObjectCreate("lowline", OBJ_HLINE, 0, 0, 0);
ObjectCreate("highline", OBJ_HLINE, 0, 0, 0);

ObjectCreate("avline", OBJ_HLINE, 0, 0, 0);

ObjectSet("avline", OBJPROP_COLOR, Blue);
ObjectCreate("Day_start", OBJ_VLINE, 0, 0, 0);

return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//---- TODO: add your code here
ObjectDelete("lowline");
ObjectDelete("highline");
ObjectDelete("avline");
ObjectDelete("Day_start");

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
//---- TODO: add your code here
int limit;
//---- check for possible errors
if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//---- macd counted in the 1-st buffer



double lowprice=0, highprice=0, avprice=0;
int shift=0, barsinday=0;
int DayExtremumsBarOffset = 0;

while (DayOfWeek()==TimeDayOfWeek(Time[barsinday]+DayOffset)) {
barsinday++;
}
barsinday--;


if (CurTime () % (60*60*24) > (10*60*60) )
{
while ((Time[0]-Time[DayExtremumsBarOffset]<DayExtremumsOffset) && (Time[DayExtremumsBarOffset]% (60*60*24)>(10*60*60))) {
DayExtremumsBarOffset++;
}
DayExtremumsBarOffset--;
}

ObjectMove("Day_start", 0, Time[barsinday], 0);

shift=Lowest(NULL, 0, MODE_LOW, barsinday-DayExtremumsBarOffset, DayExtremumsBarOffset);
lowprice=Low[shift];
ObjectMove("lowline", 0, Time[0], lowprice);

shift=Highest(NULL, 0, MODE_HIGH, barsinday-DayExtremumsBarOffset, DayExtremumsBarOffset);
highprice=High[shift];
ObjectMove("highline",0, Time[0], highprice);

avprice=(highprice+lowprice)/2;
ObjectMove("avline", 0, Time[0], avprice);

Comment("\n","Paramon\'s day: Corridor ", (highprice-lowprice)*MathPow(10, MarketInfo(Symbol(), MODE_DIGITS)), " points \n");

//----
return(0);
}
//+------------------------------------------------------------------+



Sample





Analysis



Market Information Used:

Series array that contains open time of each bar
Series array that contains the lowest prices of each bar
Series array that contains the highest prices of each bar


Indicator Curves created:

Implements a curve of type DRAW_LINE

Indicators Used:



Custom Indicators Used:

Order Management characteristics:

Other Features: