黄娜 发表于 2021-10-6 21:04:36

做多做空文字

//+------------------------------------------------------------------+
//|                                              KM-TREND MOVERS.mq4 |
//|                                                Khurram Mustafa |
//|                           https://www.mql5.com/en/users/kc1981 |
//+------------------------------------------------------------------+
#property copyright "KM"
#property link      "https://www.mql5.com/en/users/kc1981/seller"
#property version   "1.0"
#property description "TREND MOVERS"
#property strict
#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
input color Colour = Black;
input string Setting1 = "Moving Average";
input int MA_fast = 6;
input int MA_slow = 25;
input int MA_shift_fast = 0;
input int MA_shift_slow = 0;
input string Setting2 = "RSI";
input int Period2 = 13;
input string Setting3 = "ATR";
input int Period3 = 13;
input string Setting4="STOCHISTIC";
input int Period4K = 13;
input int Period4D = 3;
input int Period4S = 8;
input string Setting5 = "MACD";
input int EFast = 8;
input int ESlow = 13;
input int EPeriod = 5;
input string Setting6 = "CCI";
input int Period5 = 21;
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int init()
{
   return(0);
}
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int deinit()
{
   ObjectDelete("textrsi");
   ObjectDelete("textatr");
   ObjectDelete("textsto");
   ObjectDelete("textmacd");
   ObjectDelete("textcci");
   ObjectDelete("texti");
   Comment("");
   return(0);
}
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int start()
{
   double rsilevel=iRSI(Symbol(),0,Period2,0,0);
   ObjectCreate("textrsi",OBJ_LABEL,0,0,0,0,0);
   ObjectSet("textrsi",OBJPROP_CORNER,1);
   ObjectSet("textrsi",OBJPROP_XDISTANCE,50);
   ObjectSet("textrsi",OBJPROP_YDISTANCE,80);
   ObjectSetText("textrsi","RSI LEVEL "+IntegerToString(Period2,0)+" : "+DoubleToStr(rsilevel,2),10,"Times New Roman",Colour);
   double atrlevel=iATR(Symbol(),0,Period3,0);
   ObjectCreate("textatr",OBJ_LABEL,0,0,0,0,0);
   ObjectSet("textatr",OBJPROP_CORNER,1);
   ObjectSet("textatr",OBJPROP_XDISTANCE,50);
   ObjectSet("textatr",OBJPROP_YDISTANCE,100);
   ObjectSetText("textatr","ATR LEVEL "+IntegerToString(Period3,0)+" : "+DoubleToString(atrlevel,5),10,"Times New Roman",Colour);
   double stolevel=iStochastic(Symbol(),0,Period4K,Period4D,Period4S,0,0,MODE_EMA,0);
   ObjectCreate("textsto",OBJ_LABEL,0,0,0,0,0);
   ObjectSet("textsto",OBJPROP_CORNER,1);
   ObjectSet("textsto",OBJPROP_XDISTANCE,50);
   ObjectSet("textsto",OBJPROP_YDISTANCE,120);
   ObjectSetText("textsto","STOCHISTIC LEVEL "+IntegerToString(Period4K,0)+" : "+DoubleToString(stolevel,2),10,"Times New Roman",Colour);
   double macdlevel=iMACD(Symbol(),0,EFast,ESlow,EPeriod,0,MODE_EMA,0);
   ObjectCreate("textmacd",OBJ_LABEL,0,0,0,0,0);
   ObjectSet("textmacd",OBJPROP_CORNER,1);
   ObjectSet("textmacd",OBJPROP_XDISTANCE,50);
   ObjectSet("textmacd",OBJPROP_YDISTANCE,140);
   ObjectSetText("textmacd","MACD LEVEL "+IntegerToString(EPeriod,0)+" : "+DoubleToString(macdlevel,5),10,"Times New Roman",Colour);
   double ccilevel=iCCI(Symbol(),0,Period5,0,0);
   ObjectCreate("textcci",OBJ_LABEL,0,0,0,0,0);
   ObjectSet("textcci",OBJPROP_CORNER,1);
   ObjectSet("textcci",OBJPROP_XDISTANCE,50);
   ObjectSet("textcci",OBJPROP_YDISTANCE,160);
   ObjectSetText("textcci","CCI LEVEL "+IntegerToString(Period5,0)+" : "+DoubleToStr(ccilevel,2),10,"Times New Roman",Colour);
   double h15 =iMA( NULL,0,MA_fast, MA_shift_fast,MODE_EMA,PRICE_CLOSE,0);
   double h120=iMA( NULL,0,MA_slow, MA_shift_slow,MODE_SMA,PRICE_CLOSE,0);
   ObjectCreate("texti",OBJ_LABEL,0,0,0,0,0);
   ObjectSet("texti",OBJPROP_CORNER,1);
   ObjectSet("texti",OBJPROP_XDISTANCE,50);
   ObjectSet("texti",OBJPROP_YDISTANCE,60);
   ObjectSetText("texti","TEST",18,"Times New Roman",Colour);
   if(iClose(Symbol(),0,0)>h15 && iClose(Symbol(),0,0)>h120)
   {
      ObjectSetText("texti","做多",18,"Times New Roman",Lime);
   }
   else if(iClose(Symbol(),0,0)>h15 && iClose(Symbol(),0,0)<h120)
   {
      ObjectSetText("texti","等待或做多",18,"Times New Roman",Green);
   }
   else if(iClose(Symbol(),0,0)<h15 && iClose(Symbol(),0,0)<h120)
   {
      ObjectSetText("texti","做空",18,"Times New Roman",Red);
   }
   else if(iClose(Symbol(),0,0)<h15 && iClose(Symbol(),0,0)>h120)
   {
      ObjectSetText("texti","等待或做空",18,"Times New Roman",Red);
   }
   else
   {
      ObjectSetText("texti","等待",18,"Times New Roman",Black);
   }
   return(0);
}
//+---------------------------------------------------------------+

yewm 发表于 2021-10-6 21:12:35

发指标

喧哗上等 发表于 2021-10-7 14:01:51

{:1_179:}

非常人 发表于 2021-10-12 14:16:26

谢谢

沈小陌 发表于 2021-10-15 20:08:35

{:1_181:}

大拇指 发表于 2021-10-16 14:06:15

{:1_181:}

qytz 发表于 2021-10-21 22:57:09

{:1_181:}

树子 发表于 2021-10-23 17:50:39

支持下

金市有约 发表于 2021-10-24 14:35:49

谢谢

ebkmrdtr 发表于 2021-10-26 20:24:56

支持下
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: 做多做空文字