Page 1750 of 2170

Re: MT4 Indicator requests and ideas

Posted: Wed Jan 18, 2023 11:43 pm
by almost profitable
hello all 👋🏼 i been trying to add push notifactions to this all day yesterday is anybody able to help?

i dont code but have been able to add to other indicators but this one is too different 🤷🏽‍♂️🤦🏽‍♂️

Re: MT4 Indicator requests and ideas

Posted: Wed Jan 18, 2023 11:51 pm
by traderokey
Hi Mrtools,

Could you please add on/off button the Taotra avgs separate indicator?
Thanks.


Re: MT4 Indicator requests and ideas

Posted: Thu Jan 19, 2023 3:58 am
by mrtools
almost profitable wrote: Wed Jan 18, 2023 11:43 pm hello all 👋🏼 i been trying to add push notifactions to this all day yesterday is anybody able to help?

i dont code but have been able to add to other indicators but this one is too different 🤷🏽‍♂️🤦🏽‍♂️
Try here Macd indicators

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 19, 2023 4:13 am
by Chickenspicy
I posted wrong thread last time sorry,

May Mrtools please try making an Volatility Quality of Relative Strength Index please? Or maybe even rsioma ?I feel like there is something else that vq would be good hybrid of, with gratitude!

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 19, 2023 4:29 am
by mrtools
traderokey wrote: Wed Jan 18, 2023 11:51 pm Hi Mrtools,

Could you please add on/off button the Taotra avgs separate indicator?
Thanks.


Taotra avgs separate (mtf).ex4
Posted it Here

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 19, 2023 5:19 am
by mrtools
chickensword wrote: Thu Jan 19, 2023 4:13 am I posted wrong thread last time sorry,

May Mrtools please try making an Volatility Quality of Relative Strength Index please? Or maybe even rsioma ?I feel like there is something else that vq would be good hybrid of, with gratitude!
Tried it but not getting it to work, not sure if it's possible or if I am doing something wrong.

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 19, 2023 5:42 am
by traderokey
mrtools wrote: Thu Jan 19, 2023 4:29 am Posted it Here

Thanks Mrtools

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 19, 2023 8:50 am
by thomdel
Respected Sir,

Kindly have a look at this. It will be useful to add mtf.

Request you to Please Add : mtf --- Option to : M-MATH v3 BT Indicator.


Reason for request :
This indicator is different from other murrey / mmath indicators : in options / functions.


Thanks for your Support, Generosity, Time, Efforts.
Thanks.

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 19, 2023 10:10 am
by Chickenspicy
mrtools wrote: Thu Jan 19, 2023 5:19 am Tried it but not getting it to work, not sure if it's possible or if I am doing something wrong.
I think of it as the high low range from average gain loss
Not sure if that helped


I think scratching the high and low
And replace that + positive as a high and -negative as a low
Every 4 / choice # candles the( +gain (subtract) the -loss moves

#of candle,, Range of average gain / loss

Re: MT4 Indicator requests and ideas

Posted: Fri Jan 20, 2023 12:38 am
by SergioV7
Good morning everyone, I only ask if you can help me with your experience, not to manufacture it, just to tell me please where this code repaints, I checked it myself and made modifications but I can't leave it without repainting. May I get your kind help? Best Regards


SergioV7 wrote: Mon Jan 16, 2023 10:56 am Colleagues, thank you for your great work, this indicator repaints in the current candle, could you please help me not to repaint?

Code: Select all

#property indicator_chart_window
#property indicator_buffers 1

#property indicator_color1 Red
//---- input parameters
extern double       LongPeriod=25.0;  // note that for an EMA you can have floating point numbers. 
extern double       ShortPeriod=8.0;
extern double       ExtraTimeForward=1.0; // how much to further extrapolate location. 

//---- buffers
//---- indicator buffers
double ExtBuffer[];

//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {

   SetIndexBuffer(0,ExtBuffer);
 //---- drawing settings
   SetIndexStyle(0,DRAW_LINE);
//---- initialization done
   return(0);
  }


int start()
  {
   int limit;
   int counted_bars=IndicatorCounted();
   double ma1,ma3;
   double p1,p3; 
   double t1,t3,t;

//---- check for possible errors
   if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
   if(counted_bars>0) counted_bars--;
    limit=MathMin(Bars-counted_bars,Bars-1);
   
//---- main loop
   p1 = 2.0/(LongPeriod+1.0);
   p3 = 2.0/(ShortPeriod+1.0); 
   
   t1 = (LongPeriod-1.0)/2.0;
   t3 = (ShortPeriod-1.0)/2.0;
   t = ShortPeriod + ExtraTimeForward;
   
   ma1 = Close[limit-1];
   ma3 = ma1;
   for(int i=limit-1; i>= 0; i--) {
      //---- ma_shift set to 0 because SetIndexShift called abowe
      double val = Close[i];
      double slope1, predict;

         
      ma1 = p1*val + (1.0-p1)*ma1;
      ma3 = p3*val + (1.0-p3)*ma3;
      
      slope1 = (ma3-ma1)/(t1-t3);
   
      predict = ma3 + slope1*t;
   
      ExtBuffer[i]=predict; 
  }
//---- done
   return(0);
}
//+------------------------------------------------------------------+