//+------------------------------------------------------------------+maOpen=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_OPEN,pos);
maClose=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_CLOSE,pos);
maLow=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_LOW,pos);
maHigh=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_HIGH,pos);
haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;
haClose=(maOpen+maHigh+maLow+maClose)/4;
haHigh=MathMax(maHigh, MathMax(haOpen, haClose));
haLow=MathMin(maLow, MathMin(haOpen, haClose));
if (haOpen<haClose)
{
ExtMapBuffer1[pos]=haLow;
ExtMapBuffer2[pos]=haHigh;
}
else
{
ExtMapBuffer1[pos]=haHigh;
ExtMapBuffer2[pos]=haLow;
}
ExtMapBuffer3[pos]=haOpen;
ExtMapBuffer4[pos]=haClose;
pos--;
}
ObjectCreate("label_object_B1", OBJ_LABEL, 0, 0, 0);
ObjectSetText("label_object_B1","汇客中国 www.fxwork.cn",12,"Arial",Yellow);
ObjectSet("label_object_B1", OBJPROP_XDISTANCE, 250);
ObjectSet("label_object_B1", OBJPROP_YDISTANCE, 5);
//----
return(0);
}
//+------------------------------------------------------------------+
void watermark()
{
ObjectCreate("fxcruiser", OBJ_LABEL, 0, 0, 0);
ObjectSetText("fxcruiser", "fxcruiser", 11, "Lucida Handwriting", RoyalBlue);
ObjectSet("fxcruiser", OBJPROP_CORNER, 2);
ObjectSet("fxcruiser", OBJPROP_XDISTANCE, 5);
ObjectSet("fxcruiser", OBJPROP_YDISTANCE, 10);
return(0);
} |