Page 471 of 2042

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 19, 2018 8:22 pm
by friend4you
mntiwana wrote: Sun Sep 16, 2018 8:15 pm
As for i know and as Mrtools explained - Trend magic is repaint ver of Super trend which uses CCI
better to try using newest super trend instead
It is not repainting and popular since 2009. I join the request and post the mq5 version for changes like FBI especially alerts and "all price options, smoothed, adaptiveness". But I think you have already better versions of a cci 50 over atr 5 indicator (other settings not as good!) ? It's called supertrend sometimes, but they have not much in common.

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 19, 2018 9:35 pm
by Zelias
Hi Team,

I was wondering whether there is an indicator like the one below already here on FX Station (I couldn't find one by searching in the relevant threads), or if such could be created using the formula/explanations in the image below.

I sincerely hope to not have violated any of the rules on this website by posting this image - if this is the case, do let me know and I'll remove my post asap.

Thanks in advance for your help, as always :)

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 19, 2018 10:09 pm
by mntiwana
Zelias wrote: Mon Nov 19, 2018 9:35 pm Hi Team,

I was wondering whether there is an indicator like the one below already here on FX Station (I couldn't find one by searching in the relevant threads), or if such could be created using the formula/explanations in the image below.

I sincerely hope to not have violated any of the rules on this website by posting this image - if this is the case, do let me know and I'll remove my post asap.

Thanks in advance for your help, as always :)
Post illustration picture/s if possible

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 20, 2018 12:36 am
by Zelias
mntiwana wrote: Mon Nov 19, 2018 10:09 pm
Post illustration picture/s if possible
Here are a couple. Wonder why they didn't attach the first time around, as I saw them in the Preview pane.

Re: MT4 Indicator requests and ideas

Posted: Wed Nov 21, 2018 3:32 am
by ionone
hello guys

could you make an open source coIntegration indicator ? (one indicator that computes the cointegration between two pairs on a buffer of length n, and with weights (recent = more weight) option.

i'm trying to do it, but it would be interesting to compare results!

thank you so much

Jeff

Re: MT4 Indicator requests and ideas

Posted: Wed Nov 21, 2018 4:25 am
by ionone
my best version looks like that for now on EU VS GU

i have a lot of other verisons because i'm doing experiments to try to find the best possible indicator, this is a nice domain of research.

Re: MT4 Indicator requests and ideas

Posted: Wed Nov 21, 2018 5:44 pm
by mtp
I am not a coder,can experts compile this indicator and if required do some changes?
////////////////////////////////////////////////////////////
// Copyright by HPotter v2.0 29/09/2014
// TTM scalper indicator of John Carter’s Scalper Buys and Sells. The methodology
// is a close approximation of the one described in his book Mastering the Trade.
// The book is highly recommended. Note the squares are not real-time but will
// show up once the third bar has confirmed a reversal.
////////////////////////////////////////////////////////////
study(title="TTM scalper indicator", overlay = true)
width = input(2, minval=1)
triggerSell = iff(iff(close[1] < close,1,0) and (close[2] < close[1] or close[3] <close[1]),1,0)
triggerBuy = iff(iff(close[1] > close,1,0) and (close[2] > close[1] or close[3] > close[1]),1,0)
buySellSwitch = iff(triggerSell, 1, iff(triggerBuy, 0, nz(buySellSwitch[1])))
SBS = iff(triggerSell and buySellSwitch[1] == false, high, iff(triggerBuy and buySellSwitch[1], low, nz(SBS[1])))
clr_s = iff(triggerSell and buySellSwitch[1] == false, 1, iff(triggerBuy and buySellSwitch[1], 0, nz(clr_s[1])))
clr = iff(clr_s == 0 , green , red)
plot(SBS, color=clr, title="TTM", style = circles, linewidth = width)

Re: MT4 Indicator requests and ideas

Posted: Wed Nov 21, 2018 5:46 pm
by PREETHI
hi.mrtools. attached indicator not detecting all divergence.some divergence not identified by the indicator.kindly help me.thank you in advance.

Re: MT4 Indicator requests and ideas

Posted: Wed Nov 21, 2018 7:28 pm
by Mehrab
Hello,
is there any indicator which allows me to divide price of one symbol to price of another symbol to have relative strength of the symbol,
for example divide apple price to S&P 500 ,an stochastic calculation of relative strength would be great like Chaikin analytics platform,
thanks in advanced.

Re: MT4 Indicator requests and ideas

Posted: Wed Nov 21, 2018 9:42 pm
by friend4you
One of the great older indicators to ignore sideway markets is still Damiani_volatmeter with different settings, here posted for the first time on fs and with alert as mq4. The inventer wrote:
"Used to filter whipsawed markets out. When noise line (grey) is above signal line (green) even trading ranges strategies will have poor performance - by Luis Guilherme Damiani NEW VERSION"

Maybe our coders want to make it even better, maybe all price types, jurik smoothing, adaptiveness and/or filtering?

Any thoughts about this idea: If you like one of the ideas, please click the thumb button left under this post.
friend4you wrote: Fri Nov 16, 2018 3:43 am Dear mrtools!
You posted these incredible indicators, which are used in some strategies introduced on forex-station. Success rate is much higher, when three lines point up or downwards.

Is it possible to get an alert with wav-file, that can be chosen, when one, two or three lines (as option) change slope in the same direction. Maybe later also a % filter on calculation or adaptiveness or coloring of slope?
Thanks.
The mq4-file of mladen, changed by pacois is just for reference. The only states of 0 and 1 are difficult to use for one-time alerts.
RK-triple_smoothed_Momentum3.mq4
smoothed momentum x 3.ex4
smoothed momentum fl.ex4