Posted it hereGoldenBrett90 wrote: Tue Feb 15, 2022 1:27 pm Looks great, but would it be too much work to do it in this way according to the screenshot, coding it with two MA's as a cloud?
This is a recent screenshot of US30 on M5, using periods 34 & 100 for the two MA's.
In the screenshot, I made arrows where both MA's are red for a sell background color, both MA's are blue for a buy background color, and where there's an area of disagreement with both a red & blue MA, where a neutral-colored background will be drawn.
Re: MT4 Indicator requests and ideas
14942Hello.
Dear Mrtools can you please help me.
I trying add signal to this indicator, but in some pairs, instruments have signal some bug. In average method EMA and Smoothed ma.
I noticed that on pairs where price is under 1, its ok. On the rest have bug.
Thank you.
Re: MT4 Indicator requests and ideas
14943In my opinion: cci of jma (arrows + alerts) 1.1 is a good signal. It is not ideal to change to version 1.2, it is too much.kvak wrote: Wed Feb 16, 2022 10:30 am Hello.
Dear Mrtools can you please help me.
I trying add signal to this indicator, but in some pairs, instruments have signal some bug. In average method EMA and Smoothed ma.
I noticed that on pairs where price is under 1, its ok. On the rest have bug.
Thank you.
It is recommended to add button to cci of jma (arrows + alerts) version 1.1. (It would be even better if the signal line was changed to a dotted line like DSL Smoothed Repulse dots BT - the non-DSL version!)

Re: MT4 Indicator requests and ideas
14944Ok, I will make it. But I want to wait for Mrtools, if he find any solutions with this bug and if share source I make universal (with signal) version.If not, I make what you requested to version 1.1.
Re: MT4 Indicator requests and ideas
14946yes ! Thats why i need some one help me ! Comebine 2 indicator become oneBorshchov A.N. wrote: Tue Feb 15, 2022 11:57 pm are you sure they work? my terminal freezes on HHLL...

Re: MT4 Indicator requests and ideas
14947mrtools
do you have RSI enter reversal arrows at ob/os level
do you have RSI enter reversal arrows at ob/os level
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: MT4 Indicator requests and ideas
14948mr.kvak/mrtools
can you filter rsi arrows with psar . RSI arrow to follow SAR dots direction
app.php/attach/file/3246428
can you filter rsi arrows with psar . RSI arrow to follow SAR dots direction
app.php/attach/file/3246428
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: MT4 Indicator requests and ideas
14949Sorry for the delay, checking it out, thought it was a zero-divide problem with the cci, but wasn't that, checking some other things now.kvak wrote: Wed Feb 16, 2022 10:30 am Hello.
Dear Mrtools can you please help me.
I trying add signal to this indicator, but in some pairs, instruments have signal some bug. In average method EMA and Smoothed ma.
I noticed that on pairs where price is under 1, its ok. On the rest have bug.
Thank you.
Re: MT4 Indicator requests and ideas
14950Think this should be changed here but it doesn't seem to affect the ma's.kvak wrote: Wed Feb 16, 2022 10:30 am Hello.
Dear Mrtools can you please help me.
I trying add signal to this indicator, but in some pairs, instruments have signal some bug. In average method EMA and Smoothed ma.
I noticed that on pairs where price is under 1, its ok. On the rest have bug.
Thank you.
from
Code: Select all
val[i] = (prc-avg)/(0.015*dev);
Code: Select all
val[i] = (dev!=0) ? (prc-avg)/(0.015*dev) : 0;