Page 1172 of 2041

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 14, 2020 9:59 am
by DVanAssen
mrtools wrote: Mon Dec 14, 2020 9:03 am

Doesn't look like it repaints, except the divergence.
Many thanks, please advise if all TDI RSX here on FS are non repaints, viz your development. Also why is this one soooo different from others when a latest TDi RSX with exact same settings is placed on chart, this one seems much faster? If i could have one of your latest Tdi RSX display the values on this the please advise OR am i doing something wrong here?
Many thanks once again

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 14, 2020 11:05 am
by mrtools
DVanAssen wrote: Mon Dec 14, 2020 9:59 am
Many thanks, please advise if all TDI RSX here on FS are non repaints, viz your development. Also why is this one soooo different from others when a latest TDi RSX with exact same settings is placed on chart, this one seems much faster? If i could have one of your latest Tdi RSX display the values on this the please advise OR am i doing something wrong here?
Many thanks once again
The one you referred me to is using jurik smoothing for the rsi price and signal lines, the others are using regular moving averages.

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 14, 2020 11:09 am
by mrtools
medotrader wrote: Fri Dec 11, 2020 7:28 pm Hello mrtools
thank you for all the great work.
could this indicator be made into a histogram and if possible to add alerts.
Could you explain further how you want the histo?

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 14, 2020 11:49 am
by medotrader
the damiani volatmeter shows the condition of the market trending or ranging so perhaps green histo when trending and a white histo when ranging.

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 14, 2020 1:21 pm
by hedgehog
Good day all.

Has anyone come across or can code in mql/mt4, Van Tharp's SQN

mod: removed the external link per the forum rules, please post the code

Thank you kindly.

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 14, 2020 6:56 pm
by DVanAssen
mrtools wrote: Mon Dec 14, 2020 11:05 am

The one you referred me to is using jurik smoothing for the rsi price and signal lines, the others are using regular moving averages.
Thank you for explaining that. Is there no later one of yours using jurik smoothing for the rsi price and signal lines OR is this one acceptable for use (besides divergence) in your professional coding standards. Many thanks

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 15, 2020 1:52 pm
by trade2winz
Greetings all,
Would one of the coders in the room please help me by changing the ma’s to lwma. I would like an 80 lwma with a 5 lwma, I would greatly appreciate it. Thank you.

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 15, 2020 2:55 pm
by mrtools
DVanAssen wrote: Mon Dec 14, 2020 6:56 pm
Thank you for explaining that. Is there no later one of yours using jurik smoothing for the rsi price and signal lines OR is this one acceptable for use (besides divergence) in your professional coding standards. Many thanks
Think this one is the latest tdi smoothed.

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 15, 2020 6:05 pm
by hedgehog
Hi all.

Sorry for posting an external link.

The pine code for Van Tharp's SQN. Can anyone please recode into mql/MT4?

study(title="SQN-ChrisD-Fallible", shorttitle="SQN-ChrisD-Fallible", overlay = false)
Period = input(100, minval=5, title="Period")
close_difference = close/close[1]-1
Stdev = stdev(close_difference,Period)
_sma= sma(close_difference,Period)
SQN=((_sma*sqrt(Period))/Stdev)
c=(SQN < .2 and SQN > -.2)?#FFD700: (SQN>0.6 and SQN<1.7)?#808000: (SQN>-0.6 and SQN<0.2) ?#FF0000: (SQN>=1.7)?#0000FF:(SQN<-0.6)?#800000: (SQN>.2 and SQN<0.6)? #FFD700FF:gray
plot(SQN, title="SQN", color=c, transp=10,histbase=0,style=area,linewidth=4)

Thank you.

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 15, 2020 8:11 pm
by Deez
Hi Mrtool's, i'm not sure if this can be done but could you code the coloring of candles when its above the 0 buffer like in pic, it doesn't have to be green/red just one color to say it's above 0 line(and other 3 lines).

It' might be difficult as there is 3 other lines - and when it switches to down the 0 line is now at the bottom below the other 3 lines. So now the color must only change when it's below the 0 line(and other 3 lines).

If it can be done could you add buffers to the candle color as I want to pull it into my dashboard.

Thanks for all your help.