Page 1495 of 2170

Re: MT4 Indicator requests and ideas

Posted: Wed Feb 16, 2022 3:23 am
by mrtools
GoldenBrett90 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.
Image
Posted it here

Re: MT4 Indicator requests and ideas

Posted: Wed Feb 16, 2022 10:30 am
by kvak
mrtools wrote: Wed Feb 16, 2022 3:23 am Posted it here
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

Posted: Wed Feb 16, 2022 6:05 pm
by 太虚一毫
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.
In 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.

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!) :thumbup:

Re: MT4 Indicator requests and ideas

Posted: Wed Feb 16, 2022 6:31 pm
by kvak
Ok, 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

Posted: Wed Feb 16, 2022 6:46 pm
by SpecialFX
mrtools wrote: Tue Feb 15, 2022 11:28 am Posted a version here
Thanks!

Re: MT4 Indicator requests and ideas

Posted: Wed Feb 16, 2022 11:43 pm
by kid2104
Borshchov A.N. wrote: Tue Feb 15, 2022 11:57 pm are you sure they work? my terminal freezes on HHLL...
yes ! Thats why i need some one help me ! Comebine 2 indicator become one :) HHHL - get Fractal higher high of AllAbsoluteStrength and Fractal lower low.

Re: MT4 Indicator requests and ideas

Posted: Thu Feb 17, 2022 3:42 am
by sal
mrtools
do you have RSI enter reversal arrows at ob/os level

Re: MT4 Indicator requests and ideas

Posted: Thu Feb 17, 2022 3:52 am
by sal
mr.kvak/mrtools

can you filter rsi arrows with psar . RSI arrow to follow SAR dots direction
app.php/attach/file/3246428

Re: MT4 Indicator requests and ideas

Posted: Thu Feb 17, 2022 4:36 am
by mrtools
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.
Image

Image
Sorry 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.

Re: MT4 Indicator requests and ideas

Posted: Thu Feb 17, 2022 4:49 am
by mrtools
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.
Image

Image
Think this should be changed here but it doesn't seem to affect the ma's.

from

Code: Select all

val[i]  = (prc-avg)/(0.015*dev);
to this

Code: Select all

val[i]  = (dev!=0) ? (prc-avg)/(0.015*dev) : 0;