Page 1456 of 2041

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 21, 2021 12:47 pm
by mrtools
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
Not sure, posted that picture over a year ago.

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 21, 2021 1:08 pm
by jng640
mrtools wrote: Tue Dec 21, 2021 4:51 am 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;
         }
Hi Mr.Tools,

After I replaced the code now became no arrow on the chart.... :lmao:

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 21, 2021 2:04 pm
by mrtools
jng640 wrote: Tue Dec 21, 2021 1:08 pm Hi Mr.Tools,

After I replaced the code now became no arrow on the chart.... :lmao:
Posted a version here Various indicators

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 21, 2021 8:01 pm
by artaville
mrtools wrote: Tue Dec 21, 2021 12:47 pm Not sure, posted that picture over a year ago.
Oki Doki
Thank for your attention

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 22, 2021 1:23 am
by Meyson
Hello everyone who has this indicator, found it in one guy on tradingview.com, but could not be contacted, maybe someone has ???

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 22, 2021 6:38 am
by mrtools
Meyson wrote: Wed Dec 22, 2021 1:23 am Hello everyone who has this indicator, found it in one guy on tradingview.com, but could not be contacted, maybe someone has ???
Image
Looks like a macd with a signal line, the histo looks like an osma of that macd and signal line. Have similar indicators here.

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 22, 2021 7:21 am
by Intrest 1
mrtools wrote: Wed Dec 22, 2021 6:38 am Looks like a macd with a signal line, the histo looks like an osma of that macd and signal line. Have similar indicators here.
There is also the code below the picture

https://ru.tradingview.com/script/T9c0iF1o/

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 22, 2021 5:31 pm
by thomdel
@ mrtools

Respected Sir,

Request you to Please Add Arrows on Zero Cross & Alerts on Zero Cross to : Ehlers Fisher transform histo mtf+alerts+lines

Thanks for your Time, Efforts, Generosity.

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 22, 2021 9:07 pm
by Yuri_I
thomdel wrote: Wed Dec 22, 2021 5:31 pm @ mrtools

Respected Sir,

Request you to Please Add Arrows on Zero Cross & Alerts on Zero Cross to : Ehlers Fisher transform histo mtf+alerts+lines

Thanks for your Time, Efforts, Generosity.
Good indicator! You could add divergence here. It would be very informative and beautiful.

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 22, 2021 10:07 pm
by nostalgicar90
Hello mrtools,

Can you make this indicator to MTF?

Thank you