Hi Sal,
Thanks for posting the indicator and making me aware of it.

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

Thanks again and warmest regards,
BeatlemaniaSA
Hi Sal,
Hi mrtools.mrtools wrote: Sun Dec 19, 2021 1:10 pm Sorry accidentally quoted your post, will see about a cci chaos version, tomorrow.
The standard stochastic has an anti-aliasing period of 3 by default in the metatrader. This is SMA anti-aliasing.
Posted a version here Chaos visual indicators.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!
First need to fix the codejng640 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!
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;
}
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;
}
Himrtools 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.
Not sure, posted that picture over a year ago.artaville wrote: Tue Dec 21, 2021 11:27 am Hi
mrtools
I will be very appreciate to give me any guidance about the candlesticks on chart
Thank you
Good luck