Page 50 of 66

Re: Requests & Ideas (MT5)

Posted: Thu May 26, 2022 12:05 am
by 太虚一毫
WPR + CCI is good. Looking forward to the teacher adding a smoothing option to the signal line.

Infinite merit!

Re: Requests & Ideas (MT5)

Posted: Sat May 28, 2022 12:39 pm
by caihuanhoe
can someone help me find an MT5 version that looks like this, many thanks

Re: Requests & Ideas (MT5)

Posted: Sat May 28, 2022 5:07 pm
by ionone
caihuanhoe wrote: Sat May 28, 2022 12:39 pm can someone help me find an MT5 version that looks like this, many thanks
Image
found this but it's MQ4

Code: Select all

//------------------------------------------------------------------

#property copyright "<Deleted>"

#property link      " <Deleted> "

#property description "OBS:LEI 184. Violar direitos de autor e os que lhe são conexos: Pena – detenção, de 3 (três) meses a 1 (um) ano, ou multa."

//------------------------------------------------------------------

#property indicator_separate_window

#property indicator_buffers 6



#property indicator_color1 4294967295

#property indicator_color2 4294967295

#property indicator_color3 4294967295

#property indicator_color4 4294967295

#property indicator_color5 65280 

#property indicator_color6 255



#property indicator_style2 STYLE_DOT

#property indicator_style3 STYLE_DOT

#property indicator_style4 STYLE_DOT



extern int    RsiLength     = 5;

extern int    RsiPrice      = PRICE_CLOSE;

extern int    HalfLength    = 5;

extern int    DevPeriod     = 100;

extern double Deviations    = 0.7;



extern bool   NoDellArr     = false;

extern int    Arr_otstup    = 0;

extern int    Arr_width     = 1;

extern color  Arr_Up        = 4294967295;

extern color  Arr_Dn        = 4294967295;

extern bool   AlertsMessage = false;

extern bool   AlertsSound   = false;

extern bool   AlertsEmail   = false;

extern bool   AlertsMobile  = false;

extern int    SignalBar     = 0;

extern bool   ShowArrBuf    = true;

extern int    History       = 3000;



int TimeBar;

#define PREFIX "vs1"



double RS[];

double ChMid[];

double ChUp[];

double ChDn[];

double SigUp[];

double SigDn[];

//------------------------------------------------------------------

int init()

{

   HalfLength=MathMax(HalfLength,1);

   

         SetIndexBuffer(0,RS); 

         SetIndexBuffer(1,ChMid);

         SetIndexBuffer(2,ChUp); 

         SetIndexBuffer(3,ChDn);

         SetIndexBuffer(4,SigUp);

         SetIndexArrow (4,233);

         SetIndexBuffer(5,SigDn);

         SetIndexArrow (5,234);

         

      if(ShowArrBuf)

       {

         SetIndexStyle (5,DRAW_ARROW); 

         SetIndexStyle (4,DRAW_ARROW);

       }else{

         SetIndexStyle (5,DRAW_NONE);

         SetIndexStyle (6,DRAW_NONE);

       }

         SetIndexLabel (0,"RSI");

         SetIndexLabel (1,"ChMid");

         SetIndexLabel (2,"ChUp");

         SetIndexLabel (3,"ChDn");

         SetIndexLabel (4,"SigUp");

         SetIndexLabel (5,"SigDn");

         

   return(0);

}

//------------------------------------------------------------------

int deinit() 

{ 

   for (int i = ObjectsTotal()-1; i >= 0; i--)   

   if (StringSubstr(ObjectName(i), 0, StringLen(PREFIX)) == PREFIX)

       ObjectDelete(ObjectName(i));

  return(0); 

}

//------------------------------------------------------------------

int start()

{

   int i,j,k,counted_bars=IndicatorCounted();

      if(counted_bars<0) return(-1);

      if(counted_bars>0) counted_bars--;

      int limit=MathMin(History,Bars-counted_bars+HalfLength);



   for (i=limit; i>=0; i--) RS[i] = iRSI(NULL,0,RsiLength,RsiPrice,i);

   for (i=limit; i>=0; i--)

   {

      double dev  = iStdDevOnArray(RS,0,DevPeriod,0,MODE_SMA,i);

      double sum  = (HalfLength+1)*RS[i];

      double sumw = (HalfLength+1);

      for(j=1, k=HalfLength; j<=HalfLength; j++, k--)

      {

         sum  += k*RS[i+j];

         sumw += k;

         if (j<=i)

         {

            sum  += k*RS[i-j];

            sumw += k;

         }

      }

      ChMid[i] = sum/sumw;

      ChUp[i] = ChMid[i]+dev*Deviations;

      ChDn[i] = ChMid[i]-dev*Deviations;

  }    

//-----------------------------------------------------------------------+ 

 for (i = limit; i >= 0; i--)

  {   

  if(RS[i]<ChDn[i] && RS[i+1]>ChDn[i+1])

   { 

     SigUp[i] = RS[i]-10;

     arrows_wind(i,"RSI TMA Up",Arr_otstup ,233,Arr_Up,Arr_width,false);

   }else{

     if(!NoDellArr)

      {

        SigUp[i] = EMPTY_VALUE;

        ObjectDelete(PREFIX+"RSI TMA Up"+TimeToStr(Time[i],TIME_DATE|TIME_SECONDS));

      }  

   }

   

  if(RS[i]>ChUp[i] && RS[i+1]<ChUp[i+1]) 

   {

     SigDn[i] = RS[i]+10;

     arrows_wind(i,"RSI TMA Dn",Arr_otstup ,234,Arr_Dn,Arr_width,true);

   }else{

     if(!NoDellArr)

      {

        SigDn[i] = EMPTY_VALUE;

        ObjectDelete(PREFIX + "RSI TMA Dn" + TimeToStr(Time[i],TIME_DATE|TIME_SECONDS));

      }  

   }  

//-----------------------------------------------------------------------+

 if(AlertsMessage || AlertsEmail || AlertsMobile || AlertsSound)

  { 

   string message1 = ("RSI TMA  - "+Symbol()+" TF("+Period()+") - Signal for BUY"); 

   string message2 = ("RSI TMA  - "+Symbol()+" TF("+Period()+") - Signal for SELL");

       

    if(TimeBar!=Time[0] && RS[SignalBar]<ChDn[SignalBar] && RS[SignalBar+1]>ChDn[SignalBar+1])

     { 

        if (AlertsMessage) Alert(message1);

        if (AlertsEmail)   SendMail(Symbol()+" RSI TMA  ",message1);

        if (AlertsMobile)  SendNotification(message1);

        if (AlertsSound)   PlaySound("alert2.wav");

        TimeBar=Time[0];

     }

    if(TimeBar!=Time[0] && RS[SignalBar]>ChUp[SignalBar] && RS[SignalBar+1]<ChUp[SignalBar+1])

     { 

        if (AlertsMessage) Alert(message2);

        if (AlertsEmail)   SendMail(Symbol()+" RSI TMA  ",message2);

        if (AlertsMobile)  SendNotification(message2);

        if (AlertsSound)   PlaySound("alert2.wav");

        TimeBar=Time[0];

    }

   }

  }

//-----------------------------------------------------------------------+

   return(0);

}

//-----------------------------------------------------------------------+

void arrows_wind(int k, string N,int ots,int Code,color clr, int ArrowSize,bool up)                 

{           

   string objName = PREFIX+N+TimeToStr(Time[k],TIME_DATE|TIME_SECONDS); 

   double gap  = ots*Point;

   

   ObjectCreate(objName, OBJ_ARROW,0,Time[k],0);

   ObjectSet   (objName, OBJPROP_COLOR, clr);  

   ObjectSet   (objName, OBJPROP_ARROWCODE,Code);

   ObjectSet   (objName, OBJPROP_WIDTH,ArrowSize);  

  if (up)

      ObjectSet(objName,OBJPROP_PRICE1,High[k]+gap);

     else  

      ObjectSet(objName,OBJPROP_PRICE1,Low[k]-gap);

}

Re: Requests & Ideas (MT5)

Posted: Sun May 29, 2022 12:23 am
by 太虚一毫
Looking forward to teachers doing a Fractal channel breakout histo.mq5 version.

Infinite merit!

(Reference indicator: .mq4)

Re: Requests & Ideas (MT5)

Posted: Mon May 30, 2022 1:43 am
by demi
Hello
Line 882 → 386
Thank you very much in advance :)

Re: Requests & Ideas (MT5)

Posted: Mon May 30, 2022 5:16 am
by mrtools
太虚一毫 wrote: Sun May 29, 2022 12:23 am Looking forward to teachers doing a Fractal channel breakout histo.mq5 version.

Infinite merit!

(Reference indicator: .mq4)
Haven't figured out the adjustable prices but did this version with adjustable period.

Re: Requests & Ideas (MT5)

Posted: Tue May 31, 2022 11:32 am
by Banzai
TD-40 wrote: Fri Apr 01, 2022 4:22 am I am looking for a TD Sequential indicator for MT5.
TD Sequential
What is TD Sequential?
TD Sequential is a system developed by Tom DeMark to provide quantitative measure of a budding reversal in a trend. It is based on three main concepts: Buy/Sell Setup, which signals at least a partial trend exhaustion, Buy/Sell Setup Perfection, which signals a high likelihood of trend at least stagnating, and Buy/Sell Countdown, which provides an indication that the initial trend's momentum is drained.

TD Sequential Ultimate indicator adds another technique of Tom DeMark's authorship to the mix — TDST Support/Resistance levels. They are based on the Buy/Sell Setup candles and provide, unsurprisingly, powerful levels of support and resistance. Those can be used alone or in combination with the rest of the TD Sequential system.

Re: Requests & Ideas (MT5)

Posted: Tue May 31, 2022 12:18 pm
by Jedidiah
Banzai wrote: Tue May 31, 2022 11:32 am TD Sequential


Image

Image
Is there an MT4 version?

Re: Requests & Ideas (MT5)

Posted: Mon Jun 06, 2022 6:27 pm
by demi
Hello
Line 882 → 387
Thank you very much in advance :)

Re: Requests & Ideas (MT5)

Posted: Tue Jun 07, 2022 4:16 pm
by sunmetal
hello everyone!mr.tools,I asked you once to take a look over this indicator,you told me it needs to be fixed,but I didn't dare to ask you fix it back then.I'm asking you now,please can you fix it?thank you