_SHME Dynamic SR
Posted: Sun Jun 27, 2021 7:36 am
by Zorak
Hi,
I joined this forum yesterday and I find it very interesting.
I searched for this indicator: SHME Dynamic SR but I could not find it, maybe it is in a Motherlode,
but it is not in the Motherlodes of May and June 2006 and I have not found other Motherlodes to download.
Maybe the Download section is no longer available.
If someone can insert here the indicator: SHME Dynamic SR (in .Eld format compatible with Tradestatin 8.2, or in text format), I thank you in advance.
Re: _SHME Dynamic SR
Posted: Sun Jun 27, 2021 11:39 pm
by dojirock
If Tro is ok with it I can share the Tro_DynamicFibs_SR

- Screenshot 2021-06-27 193900.png (45.92 KiB) Viewed 6784 times
doji
Re: _SHME Dynamic SR
Posted: Sun Jun 27, 2021 11:40 pm
by dojirock
TRO, how ya feel about this?
Re: _SHME Dynamic SR
Posted: Sun Jun 27, 2021 11:41 pm
by dojirock
By the way, nice to see another TS user here.

doji
Re: _SHME Dynamic SR
Posted: Sun Jun 27, 2021 11:51 pm
by buffalo
does anyone have a dynamic_fib script for trading view? (pinescript)
Re: _SHME Dynamic SR
Posted: Mon Jun 28, 2021 12:11 am
by dojirock
Pine...
study("Sema Indicator", overlay=true)
length_period1 = 5 // input(5,title="Period 1 length:")
length_period2 = 13 //input(13,title="Period 2 length:")
length_period3 = 34 //input(34,title="Period 3 length:")
p1top = high >= highest(high, length_period1)
p2top = high >= highest(high, length_period2)
p3top = high >= highest(high, length_period3) //? true : false
//p2top = p1top ? high[2] >= highest(high, length_period2) ? true : false : false
//p3top = p2top ? high[2] >= highest(high, length_period3) ? true : false : false
p1bot = low <= lowest(low, length_period1)
p2bot = low <= lowest(low, length_period2)
p3bot = low <= lowest(low, length_period3)
//filter = true
//sematop3 = filter ? p2top : p3top
sema3top = p3top ? true : false
sema2top = iff(p3top<p2top, true, false)
sema1top = iff(p2top<p1top, true, false)
sema3bot = p3bot ? true : false
sema2bot = iff(p3bot<p2bot, true, false)
sema1bot = iff(p2bot<p1bot, true, false)
plotchar(sema1bot, char='1', color= red, location = location.belowbar )
plotchar(sema1top, char='1', color= red, location = location.abovebar )
s2top = iff(sema2top and high>high[1] and high>high[2], true, false)
plotchar(sema2bot, char='2', color= blue, location = location.belowbar )
plotchar(s2top, char='2', color= blue, location = location.abovebar )
s3top = iff(sema3top and high>high[1] and high>high[2], true, false)
plotchar(sema3bot, char='3', color= green, location = location.belowbar )
plotchar(s3top, char='3', color= green, location = location.abovebar )
Re: _SHME Dynamic SR
Posted: Mon Jun 28, 2021 6:15 am
by Zorak
For dojirock:
I thank you for your answers, but I need the formula of the SHME Dynamic SR indicator in easylanguage for Tradestation (non Pine);
I can repay you with several Technical Analysis books (pdf and epub).
P.S: I already have the indicator Tro_DynamicFibs_SR, but I prefer the SHME Dynamic SR, which I have seen on a site with this image:

- SHME-Dynamic-SR-indicator.jpg (75.79 KiB) Viewed 3664 times
Re: _SHME Dynamic SR
Posted: Mon Jun 28, 2021 11:39 am
by dojirock
I guess im not aware of the difference?
Re: _SHME Dynamic SR
Posted: Mon Jun 28, 2021 2:33 pm
by TheRumpledOne
dojirock wrote:If Tro is ok with it I can share the Tro_DynamicFibs_SR
Screenshot 2021-06-27 193900.png
doji
I posted the Tradestation code and eSignal code over a decade ago. Download it from the Motherlodes.
Re: _SHME Dynamic SR
Posted: Mon Jun 28, 2021 3:15 pm
by Zorak
For dojirock:
the indicator: Tro_DynamicFibs_SR that I found here, is this one in the image below, but I prefer the indicator: SHME Dynamic SR which is what you see in my previous message.
If someone can insert here the formula of the indicator: SHME Dynamic SR (preferably in text format), I can reciprocate with several Technical Analysis and Trading System books (pdf and epub).
I thank in advance.

- Tro_Dynamic-Fibs-SR.jpg (152.86 KiB) Viewed 3664 times