Page 1455 of 2042

Re: MT4 Indicator requests and ideas

Posted: Sun Dec 19, 2021 4:52 pm
by sal
BeatlemaniaSA wrote: Sun Dec 19, 2021 3:40 pm Hi @mrtools,

Can you please add alerts, arrows and a button (or would kvak do that) to the indicator below? Alerts and arrows to be triggered when the CCI line crosses both above and below the 100 & -100 levels :)


CCI_Highlight.mq4

CCI Highlight.mq4

Image


Warmest regards,
BeatlemaniaSA
doest this works for you!!

Re: MT4 Indicator requests and ideas

Posted: Sun Dec 19, 2021 5:26 pm
by BeatlemaniaSA
sal wrote: Sun Dec 19, 2021 4:52 pm doest this works for you!!
Hi Sal,

Thanks for posting the indicator and making me aware of it. :thumbup:

However, aesthetically, this does not work for me. It's just how I like my charts to look :)

Thanks again and warmest regards,
BeatlemaniaSA

Re: MT4 Indicator requests and ideas

Posted: Sun Dec 19, 2021 9:27 pm
by Intrest 1
mrtools wrote: Sun Dec 19, 2021 1:10 pm Sorry accidentally quoted your post, will see about a cci chaos version, tomorrow.
Hi mrtools.
Add LRMA smoothing to the stochastic

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 20, 2021 4:03 am
by mrtools
Intrest 1 wrote: Sun Dec 19, 2021 9:27 pm Hi mrtools.
Add LRMA smoothing to the stochastic
What's LRMA smoothing?

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 20, 2021 4:06 am
by Intrest 1
mrtools wrote: Mon Dec 20, 2021 4:03 am What's LRMA smoothing?
The standard stochastic has an anti-aliasing period of 3 by default in the metatrader. This is SMA anti-aliasing.
Can I put LRMA instead of SMA?

Sorry for the complexity of google translate

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 20, 2021 5:29 am
by mrtools
Tradehunter wrote: Sun Dec 19, 2021 12:07 am MR TOOLS
Can you make a Chaos Visual Averages version using the CCI
It seems like all the code is there just the calculations would need to be changed
might be awesome!
Posted a version here Chaos visual indicators.

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 20, 2021 10:19 pm
by jng640
Hi Mr.tools, I would like to ask is it possible to create a similar attached indicator but without lagging 1 bar?
This indicator will first appear arrow on current bar(Red Line), but it need 1 more bar to confirm the arrow(Yellow Line), otherwise if the next bar(Yellow Line) go opposite direction, the previous arrow will sometime disappeared. That's mean the confirmed bar is next 2 bars(Green Line) from the arrow bar.
Is it possible to create a similar indicator but can confirm the signal and the arrow won't disappear after the current signal bar(Red Line) closed?

Thank you!

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 21, 2021 2:45 am
by whiplashtm
Hi, would it be possible to give Fast Ema and Ravi Fisher the volatility adjusted average (VMA) function? In the same fashion as the volatility adjusted MACD I've posted. Ravi Fisher also need the option to change between the different prices.

Appreciate it!

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 21, 2021 4:51 am
by mrtools
jng640 wrote: Mon Dec 20, 2021 10:19 pm Hi Mr.tools, I would like to ask is it possible to create a similar attached indicator but without lagging 1 bar?
This indicator will first appear arrow on current bar(Red Line), but it need 1 more bar to confirm the arrow(Yellow Line), otherwise if the next bar(Yellow Line) go opposite direction, the previous arrow will sometime disappeared. That's mean the confirmed bar is next 2 bars(Green Line) from the arrow bar.
Is it possible to create a similar indicator but can confirm the signal and the arrow won't disappear after the current signal bar(Red Line) closed?

Thank you!

Image
First need to fix the code

this

Code: Select all

trend[i] =  0.0;

         if((High[i+1] < Low[i-1]) && (body[i] > body[i+1]) && (body[i] > body[i+2]) && (body[i] > body[i+3]) && (iVolume(NULL,0,i-LagBar)>1))
         {
         trend[i] = 1;
         }
         if((Low[i+1] > High[i-1]) && (body[i] > body[i+1]) && (body[i] > body[i+2]) && (body[i] > body[i+3]) && (iVolume(NULL,0,i-LagBar)>1))
         {
         trend[i] =- 1;
         }
needs to be

Code: Select all

trend[i] =  0.0;

         if((High[i+1] < Low[i+1]) && (body[i] > body[i+1]) && (body[i] > body[i+2]) && (body[i] > body[i+3]) && (iVolume(NULL,0,i-LagBar)>1))
         {
         trend[i] = 1;
         }
         if((Low[i+1] > High[i+1]) && (body[i] > body[i+1]) && (body[i] > body[i+2]) && (body[i] > body[i+3]) && (iVolume(NULL,0,i-LagBar)>1))
         {
         trend[i] =- 1;
         }

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 21, 2021 11:27 am
by artaville
mrtools wrote: Fri Apr 10, 2020 2:39 am Changed the rsi ma to a t3 ma,added arrows, and made it user friendly. Oh yeah and no repaint.
Image
Hi
mrtools
I will be very appreciate to give me any guidance about the candlesticks on chart
Thank you
Good luck