老王吧 发表于 2016-5-24 17:44:42

MTF Candles



//+------------------------------------------------------------------+
//|                                                 #MTF Candles.mq4 |
//|                                    Copyright ?2006, Eli Hayun |
//|                                          http://www.elihayun.com |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2006, Eli Hayun"
#property link      "http://www.elihayun.com"

#property indicator_chart_window
//---- input parameters
extern int       CandlesTF=240;
extern color   UpCandleColor = LightBlue;
extern color   DownCandleColor = Red;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//----
   return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                     |
//+------------------------------------------------------------------+
int deinit()
{
//----
   
//----
   return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
{
   int    counted_bars=IndicatorCounted();
//----
   double dif = MathAbs(Time - Time);
   
   int ix = 0;
   datetime dtStart = dif * 8 + Time;
   for (int ii=0; ii<8; ii+=2)
   {
      ObjectDelete("rect"+ii); ObjectDelete("OTrnd"+ii); ObjectDelete("CTrnd"+ii);
      ObjectCreate("rect"+ii,OBJ_TREND, 0, dtStart, iLow(NULL, CandlesTF,ix), dtStart, iHigh(NULL,CandlesTF,ix));
      color clr = DownCandleColor; if (iOpen(NULL, CandlesTF,ix) < iClose(NULL, CandlesTF,ix)) clr = UpCandleColor;
      ObjectSet("rect"+ii, OBJPROP_COLOR, clr);
       ObjectSet("rect"+ii, OBJPROP_WIDTH, 3);
      
      ObjectSet("rect"+ii, OBJPROP_RAY, False);
      
   
      ObjectCreate("OTrnd"+ii, OBJ_TREND, 0, dtStart, iOpen(NULL, CandlesTF,ix), dtStart-dif, iOpen(NULL,CandlesTF,ix));
       ObjectSet("OTrnd"+ii, OBJPROP_WIDTH, 2);
      ObjectSet("OTrnd"+ii, OBJPROP_RAY, False);
      
      ObjectSet("CTrnd"+ii, OBJPROP_WIDTH, 2);
      ObjectCreate("CTrnd"+ii, OBJ_TREND, 0, dtStart, iClose(NULL, CandlesTF,ix), dtStart+dif, iClose(NULL,CandlesTF,ix));
      ObjectSet("CTrnd"+ii, OBJPROP_WIDTH, 2);
      ObjectSet("CTrnd"+ii, OBJPROP_RAY, False);
      
      dtStart -= dif * 2;
      ix++;
    }
   
//----
   return(0);
}
//+------------------------------------------------------------------+



HR105jut 发表于 2020-6-6 14:18:54

过来看看的

真的有爱情 发表于 2020-6-28 20:06:43

:lol不错

阿伟点金 发表于 2020-7-14 13:16:37

学习了,不错

xiaxia886 发表于 2020-7-14 14:49:21

学习了,不错

FXSIN 发表于 2020-8-5 10:00:37

谢谢楼主分享

化繁为简 发表于 2020-8-22 17:47:34

帮你顶下哈!!

xqkmggky 发表于 2020-9-3 16:36:09

学习了,不错

541545557@qq.co 发表于 2021-8-6 12:18:58

{:1_179:}

娄宏韬 发表于 2024-11-7 19:21:52

谢谢
页: [1] 2
查看完整版本: MTF Candles