leledc Posted February 28, 2013 Report Share Posted February 28, 2013 (edited) ................. Edited November 24, 2013 by leledc crodzilla 1 Quote Link to comment Share on other sites More sharing options...
peteshr2st Posted February 28, 2013 Author Report Share Posted February 28, 2013 leldec thanks for coding it up for the MT guys. iwillsurvive will you post a comparison between leldecs updated indicator in MT and the W59 dots for the same chart so we can confirm if it's perfect now? Also If anyone here would like to convert it into NT for the NT guy (me! :D) that would be wonderful. It really would save me hours of time trying to figure out how to convert it myself. I can't be the only NT user who would like this in their arsenal. As for other W59 indicators there is one called "actionzones". Unfortunately this was never sold prior to W59. It's a pivot line indicator that uses a proprietary formula based off 2-3 days of data and the days opening price. That's the only info Earik has ever shared about it. It really is amazing how accurate it is over any other pivots you will ever come across. In fact it's probably the only reason a lot of W59 users even use that platform. Perhaps I am a optimist but given the fact that we have access to the pivots/data it produces in the cracked W59 I think it could be possible to reverse engineer it if a big effort was put in. Is it a holy grail? Nope, but it certainly is very impressive. Quote Link to comment Share on other sites More sharing options...
crodzilla Posted February 28, 2013 Report Share Posted February 28, 2013 Very nice, leledc... Quote MarketCycle-360.com Link to comment Share on other sites More sharing options...
iwillsurvive Posted February 28, 2013 Report Share Posted February 28, 2013 leldec thanks for coding it up for the MT guys. iwillsurvive will you post a comparison between leldecs updated indicator in MT and the W59 dots for the same chart so we can confirm if it's perfect now? Also If anyone here would like to convert it into NT for the NT guy (me! :D) that would be wonderful. It really would save me hours of time trying to figure out how to convert it myself. I can't be the only NT user who would like this in their arsenal. As for other W59 indicators there is one called "actionzones". Unfortunately this was never sold prior to W59. It's a pivot line indicator that uses a proprietary formula based off 2-3 days of data and the days opening price. That's the only info Earik has ever shared about it. It really is amazing how accurate it is over any other pivots you will ever come across. In fact it's probably the only reason a lot of W59 users even use that platform. Perhaps I am a optimist but given the fact that we have access to the pivots/data it produces in the cracked W59 I think it could be possible to reverse engineer it if a big effort was put in. Is it a holy grail? Nope, but it certainly is very impressive. where is it? is it post #21? I can't find any posts by leledc on page 1 of this thread.. The comparison image I posted earlier was based on the indicator I downloaded from post #21 Quote Link to comment Share on other sites More sharing options...
peteshr2st Posted February 28, 2013 Author Report Share Posted February 28, 2013 where is it? is it post #21? I can't find any posts by leledc on page 1 of this thread.. The comparison image I posted earlier was based on the indicator I downloaded from post #21 Yes it's post #21. He has updated the code so I'm wondering if you can post a new comparison using that. Looking at your current comparison (which I presume used the first version he posted) the dots match up in some places but are off or missing on others. Quote Link to comment Share on other sites More sharing options...
iwillsurvive Posted February 28, 2013 Report Share Posted February 28, 2013 Yes it's post #21. He has updated the code so I'm wondering if you can post a new comparison using that. Looking at your current comparison (which I presume used the first version he posted) the dots match up in some places but are off or missing on others. Still not the same.. http://postimage.org/image/k8jkijns1/ http://postimage.org/image/xlyfaqsd1/ Quote Link to comment Share on other sites More sharing options...
peteshr2st Posted February 28, 2013 Author Report Share Posted February 28, 2013 (edited) How strange. It seems to work better than the original? :) The only thing I can think of is that it's waiting for more bars to complete before printing the dots whereas the exhaustion bars print in real time Edited February 28, 2013 by peteshr2st Quote Link to comment Share on other sites More sharing options...
leledc Posted February 28, 2013 Report Share Posted February 28, 2013 (edited) ..................... Edited November 24, 2013 by leledc Quote Link to comment Share on other sites More sharing options...
tradewiser Posted December 29, 2013 Report Share Posted December 29, 2013 I can't find the MT4 inidcator. Where is it ? Thanks Quote Link to comment Share on other sites More sharing options...
CashManic Posted January 10, 2014 Report Share Posted January 10, 2014 Leledc did a pretty good job. For Metatrader platform. http://limelinx.com/4mle Cheers peterke and ylidor 2 Quote Link to comment Share on other sites More sharing options...
⭐ smithee Posted July 9, 2017 Report Share Posted July 9, 2017 (function=) input:qual(numeric),len(numeric); var:bs(0),index(0),bindex(0),sindex(0),length(0),return(0); if c>c[4] then bindex=bindex+1; if c<c[4] then sindex=sindex+1; return=0; index=0; if bindex>qual and c<o and h>=highest(h[1],len) then begin index=1; bindex=0; return=-1; end; if sindex>qual and c>o and l<=lowest(l[1],len) then begin index=-1; sindex=0; return=1; end; MA_ExBar1=return; Do you have the code for any of the other Market Analytics indicators? Quote Link to comment Share on other sites More sharing options...
sbluo Posted July 11, 2017 Report Share Posted July 11, 2017 MA_EXBar1 (function) var:bs(0),index(0),bindex(0),sindex(0),length(0),return(0); if blocknumber=22511 then begin if c>c[4] then bindex=bindex+1; if c<c[4] then sindex=sindex+1; return=0; index=0; if bindex>qual and c<o and h>=highest(h[1],len) then begin index=1; bindex=0; return=-1; end; if sindex>qual and c>o and l<=lowest(l[1],len) then begin index=-1; sindex=0; return=1; end; MA_ExBar1=return; end; Quote Link to comment Share on other sites More sharing options...
sbluo Posted July 11, 2017 Report Share Posted July 11, 2017 MA_EXBar2 (function) [LegacyColorValue = true]; input:qual(numeric); var:uprun(0),dnrun(0),trigger(0),uprun2(0),dnrun2(0),index(0); if BlockNumber=22511 then begin if h>h[1] then uprun=uprun+1; if h<h[1] then uprun=0; if l<l[1] then dnrun=dnrun+1; if l>l[1] then dnrun=0; if l>l[1] then uprun2=uprun2+1; if l<l[1] then uprun2=0; if h<h[1] then dnrun2=dnrun2+1; if h>h[1] then dnrun2=0; if uprun>=qual or uprun2>=qual then trigger=1; if dnrun>=qual or dnrun2>=qual then trigger=-1; index=0; if trigger=1 then begin if c<o then begin index=-1; trigger=0; uprun=0; uprun2=0; end; end; if trigger=-1 then begin if c>o then begin index=1; trigger=0; dnrun=0; dnrun2=0; end; end; MA_ExBar2=index; end; Quote Link to comment Share on other sites More sharing options...
sbluo Posted July 11, 2017 Report Share Posted July 11, 2017 MA_Exhaustion Bars 1 (Indicator) [LegacyColorValue = true]; input:qual(6),len(30); var:ex(0); ex=ma_exbar1(qual,len); if ex=-1 then plot1(h,""); if ex=1 then plot2(l,""); Quote Link to comment Share on other sites More sharing options...
sbluo Posted July 11, 2017 Report Share Posted July 11, 2017 MA_Exhaustion Bars 2 (Indicator) [LegacyColorValue = true]; input:qual(5); var:ex(0); ex=ma_exbar2(qual); if ex=-1 then plot1(h,""); if ex=1 then plot2(l,""); Quote Link to comment Share on other sites More sharing options...
sbluo Posted July 11, 2017 Report Share Posted July 11, 2017 MA_Trendlines (Indicator) [LegacyColorValue = true]; input:tlfilt(0),delay(3),intrady(false),dncolor(tool_lightgray),upcolor(tool_lightgray); value1=MA_Trendlines(TLFILT, DELAY, INTRADY, DNCOLOR, UPCOLOR); if 0=1 then plot1(h,""); Quote Link to comment Share on other sites More sharing options...
sbluo Posted July 11, 2017 Report Share Posted July 11, 2017 MA_Trendlines (Function) [LegacyColorValue = true]; var:nextlo(0),counter(0),left(0),type1(0),point1(0),point2(0),time1(0),time2(0),date1(0),date2(0),dnref(0),delfix(0),tldelay(0); input:tlfilt(numeric),delay(numeric),intrady(truefalse),dncolor(numeric),upcolor(numeric); if BlockNumber=22511 then begin {Adjust delay} if delay>=2 then begin tldelay=delay; delfix=0; end; if delay=1 then begin tldelay=2; delfix=1; end; if delay<=0 then begin tldelay=2; delfix=2; end; type1=0; {Type 1 Lows} if l[2]<l[1] and l[2]<l then begin nextlo=0; for counter=10 downto 3 begin if l[counter]<l[2] then nextlo=counter; end; if nextlo=0 or nextlo>4 then begin left=0; if nextlo>0 then begin for counter=3 to nextlo begin if l[2]<l[counter] then left=left+1; end; end; if nextlo=0 then begin for counter=3 to 10 begin if l[2]<l[counter] then left=left+1; end; end; if left>1 then type1=1; end; end; {Get TL Points} if point1=0 then begin if type1[tldelay-2]=1 then begin point1=l[tldelay]; time1=time[delfix]; date1=date[delfix]; end; end; if point1<>0 then begin if type1[tldelay-2]=1 then begin point2=point1; time2=time1; point1=l[tldelay]; time1=time[delfix]; date2=date1; date1=date[delfix]; end; end; var:lasttl1(0),lasttl2(0),color1(0); {Draw and Plot} if intrady=true then begin if point1>point2 and (time1<>time1[1]) and point1-point2>tlfilt then begin dnref=TL_New(date2, time2, point2, date1, time1, point1); color1=TL_SetColor(dnref,upcolor); end; end; if intrady=false then begin if point1>point2 and point1-point2>tlfilt and date2<>lasttl1 and date1<>lasttl2 then begin dnref=TL_New(date2, time2, point2, date1, time1, point1); color1=TL_SetColor(dnref,upcolor); lasttl1=date2; lasttl2=date1; end; end; var:nexthi(0),left2(0),type1h(0),point1h(0),point2h(0),time1h(0),time2h(0),date1h(0),date2h(0),upref(0); type1h=0; {Type 1 Highs} if h[2]>h[1] and h[2]>h then begin nexthi=0; for counter=10 downto 3 begin if h[counter]>h[2] then nexthi=counter; end; if nexthi=0 or nexthi>4 then begin left2=0; if nexthi>0 then begin for counter=3 to nexthi begin if h[2]>h[counter] then left2=left2+1; end; end; if nexthi=0 then begin for counter=3 to 10 begin if h[2]>h[counter] then left2=left2+1; end; end; if left2>1 then type1h=1; end; end; {Get TL Points} if tldelay>=2 then begin if point1h=0 then begin if type1h[tldelay-2]=1 then begin point1h=h[tldelay]; time1h=time[delfix]; date1h=date[delfix]; end; end; if point1h<>0 then begin if type1h[tldelay-2]=1 then begin point2h=point1h; time2h=time1h; point1h=h[tldelay]; time1h=time[delfix]; date2h=date1h; date1h=date[delfix]; end; end; end; {Draw and Plot} var:lsattl1h(0),lsattl2h(0),color2(0); if intrady=true then begin if point1h<point2h and (time1h<>time1h[1]) and point2h-point1h>tlfilt then begin upref=TL_New(date2h, time2h, point2h, date1h, time1h, point1h); color2=TL_SetColor(upref,dncolor); end; end; if intrady=false then begin if point1h<point2h and point2h-point1h>tlfilt and date2h<>lsattl1h and date1h<>lsattl2h then begin upref=TL_New(date2h, time2h, point2h, date1h, time1h, point1h); color2=TL_SetColor(upref,dncolor); lsattl1h=date2h; lsattl2h=date1h; end; end; MA_Trendlines=0; end; ⭐ smithee 1 Quote Link to comment Share on other sites More sharing options...
sbluo Posted July 11, 2017 Report Share Posted July 11, 2017 above are all of "Market Analytics - Exhaustion Bars (For TS)" extracted from exbar.eld ⭐ smithee 1 Quote Link to comment Share on other sites More sharing options...
⭐ smithee Posted July 12, 2017 Report Share Posted July 12, 2017 above are all of "Market Analytics - Exhaustion Bars (For TS)" extracted from exbar.eld Not sure how to compile those. Which are the functions and which are the indicators? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.