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.
_SHME Dynamic SR
Moderator: moderators
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
- dojirock
- rank: 1000+ posts
- Posts: 1922
- Joined: Tue Nov 17, 2009 10:11 pm
- Reputation: 729
- Gender:
- Contact:
Re: _SHME Dynamic SR
If Tro is ok with it I can share the Tro_DynamicFibs_SR
doji
doji
It always takes Momentum to break Momentum!
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
- dojirock
- rank: 1000+ posts
- Posts: 1922
- Joined: Tue Nov 17, 2009 10:11 pm
- Reputation: 729
- Gender:
- Contact:
Re: _SHME Dynamic SR
TRO, how ya feel about this?
It always takes Momentum to break Momentum!
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
- dojirock
- rank: 1000+ posts
- Posts: 1922
- Joined: Tue Nov 17, 2009 10:11 pm
- Reputation: 729
- Gender:
- Contact:
Re: _SHME Dynamic SR
By the way, nice to see another TS user here.

doji

doji
It always takes Momentum to break Momentum!
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
Re: _SHME Dynamic SR
does anyone have a dynamic_fib script for trading view? (pinescript)
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
- dojirock
- rank: 1000+ posts
- Posts: 1922
- Joined: Tue Nov 17, 2009 10:11 pm
- Reputation: 729
- Gender:
- Contact:
Re: _SHME Dynamic SR
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 )
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 )
It always takes Momentum to break Momentum!
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
Re: _SHME Dynamic SR
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:
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:
Last edited by Zorak on Tue Apr 04, 2023 4:56 am, edited 1 time in total.
- dojirock
- rank: 1000+ posts
- Posts: 1922
- Joined: Tue Nov 17, 2009 10:11 pm
- Reputation: 729
- Gender:
- Contact:
Re: _SHME Dynamic SR
I guess im not aware of the difference?
It always takes Momentum to break Momentum!
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"
- TheRumpledOne
- rank: 10000+ posts
- Posts: 15740
- Joined: Sun May 14, 2006 9:31 pm
- Reputation: 3046
- Location: Oregon
- Real name: Avery T. Horton, Jr.
- Gender:
- Contact:
Re: _SHME Dynamic SR
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.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!
Please do NOT PM me with trading or coding questions, post them in a thread.
Please do NOT PM me with trading or coding questions, post them in a thread.
Re: _SHME Dynamic SR
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.
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.
Last edited by Zorak on Tue Apr 04, 2023 4:59 am, edited 1 time in total.
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.