Page 245 of 2170

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 11, 2017 8:21 pm
by mrtools
tommo78 wrote: Sat Nov 11, 2017 7:03 pm
Hi Mrtools, can this indicator be fixed ? to remove to lag delays please. Cheers
From what i can tell it's a fractal that has coding issues, maybe try this version of fractal.

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 11, 2017 9:37 pm
by handy148
A long time back mladen made an indicator called MA zones which shades the background vertically based on a user defined MA. Is it possible to have it horizontally, in other words following the contour of the defined MA?

Apologies but I couldn't immediately see how to attach the original indicator.

Re: MT4 Indicator requests and ideas

Posted: Sun Nov 12, 2017 10:37 am
by Botan626
Hello!

Could anybody add HA candles as an option for this indicator?
-----------------------------
post edited
Note : This is a decompiled code - FS strongly discourages posting decompiled codes - and is not deleted as for example

Re: MT4 Indicator requests and ideas

Posted: Sun Nov 12, 2017 1:24 pm
by PriyaPandian
PriyaPandian wrote: Sat Nov 04, 2017 4:13 am

Did you get time to do this brother. It can be used for reversal for m1 timeframes.
Anyone tried this mq5 to mq4

Re: MT4 Indicator requests and ideas

Posted: Sun Nov 12, 2017 6:55 pm
by Empower
please add candle number option for this file:
for example i set to show and calculate for last 10 candles

Re: MT4 Indicator requests and ideas

Posted: Sun Nov 12, 2017 8:22 pm
by Xronos__
PriyaPandian wrote: Sun Nov 12, 2017 1:24 pm

inversereaction.mq5inversereaction_new.mq5Anyone tried this mq5 to mq4
Hello PriyaPandian ,
found this one it doesn't have all the whistles and bells as yours but hope you can make use of it until there is time for the experts to convert it for you happy trading

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 13, 2017 9:12 pm
by limprobable
Hello,

is it possible to have this custom envelope on MT4 please.

Envelopes parameters are 256: 31.25 / 128: 15.625 / 32: 7.8125

All parameters must be customisable (change number)

From this post:

This is code for oanda for envelope 32: 7.8125

study(title="Envelope", shorttitle="Env", overlay=true)
len = input(32, title="Length", minval=1)
octave = input(156.25)
src = input(close, title="Source")
exponential = input(false)
basis = sma(src, len)
k = octave
upper = basis + k
lower = basis - k
plot(basis, color=orange,offset=-16)
u = plot(upper, color=blue, offset=-16)
l = plot(lower, color=blue, offset=-16)
fill(u, l, color=blue)

Thans a lot and green pips

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 14, 2017 7:30 am
by tommo78
mrtools wrote: Sat Nov 11, 2017 8:21 pm

From what i can tell it's a fractal that has coding issues, maybe try this version of fractal.
Thanks Mrtools. I'll compare it now :) Cheers

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 14, 2017 8:03 am
by friend4you
rijay wrote: Fri Nov 10, 2017 4:15 am

you may find this version useful also. thank you
That alert indicator Imposted is based on it, but nobody wants to help me against alerts on every tick, a small, but annoying error as I asked here:
https://www.forex-station.com/viewtopic ... 1295365183

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 14, 2017 8:15 am
by mrtools
friend4you wrote: Tue Nov 14, 2017 8:03 am

That alert indicator Imposted is based on it, but nobody wants to help me against alerts on every tick, a small, but annoying error as I asked here:
https://www.forex-station.com/viewtopic ... 1295365183
Do you have the source fo r the smoothed momentum?