peteshr2st Posted February 18, 2013 Report Posted February 18, 2013 This is a indicator released by Earik Beann a good few years back for tradestation users. He then went on to create Wave59 and exhaustion bars was included in that as a proprietary indicator. To this day the exhaustion bars work great and a lot of Wave59 users make use of them. The original sales page for the original TS indicator - http://www.marketanalytics.net/exhaust.html A big thanks to whoever can share this!
Neowave Posted February 19, 2013 Report Posted February 19, 2013 These are the ts4 and ts2000i versions.Ela and els files. The manual is not included only an overwiew of the indicators. hxxp://www.fourshared.com/rar/TE9bPjkO/Market_Analytics_Exhaustion_Ba.html ⭐ mr12323, pipseeker and peteshr2st 3
crodzilla Posted February 20, 2013 Report Posted February 20, 2013 That domain is defunct. MarketCycle-360.com
peteshr2st Posted February 21, 2013 Author Report Posted February 21, 2013 Thanks very much neowave. I was hoping the source code might be accessible in these so I could see about converting it into a NT indicator but it seems to be fully encoded. I'll have look into decompiling it. Crodzilla replace the xx with tt and fourshared with 4shared :)
Neowave Posted February 21, 2013 Report Posted February 21, 2013 The functions are password protected as you stated. I have Tradestation_8.1_B3059 password remove medicine and a Patch for TradeStation 4.0 PowerEditor if they are of any use.TS4 may not work in windows 7.
peteshr2st Posted February 21, 2013 Author Report Posted February 21, 2013 (edited) Sounds good Neo. I don't have Tradestation 4 but I think if I had that and the PowerEditor Patch for it I have a good chance of getting at the code. If you have the 2 of them it would be very helpful, thanks. Also do you know if the files are password protected only or if they are actually encoded? The code looks encoded to me and I've heard that they can't be decompiled if that's the case. That said I haven't TS to try and view them so maybe you know. If they are just password protected it seems it can be unlocked so that's what I'm banking on. Edited February 22, 2013 by peteshr2st spelling
iwillsurvive Posted February 22, 2013 Report Posted February 22, 2013 Sounds good Neo. I don't have Tradestation 4 but I think if I had that and the PowerEditor Patch for it I have a good chance of getting at the code. If you have to 2 of them it would be very helpful, thanks. Also do you know if the files are password protected only or if they are actually encoded? The code looks encoded to me and I've heard that they can't be decompiled if that's the case. That said I haven't TS to try and view them so maybe you know. If they are just password protected it seems it can be unlocked so that's what I'm banking on. I'm also looking at getting the source code and converting it to MT4. Any luck on this?
juangalvez Posted February 25, 2013 Report Posted February 25, 2013 I am interested too in having this indicator source code: would like to know what is based on. Thanks
alten91 Posted February 25, 2013 Report Posted February 25, 2013 (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; ⭐ smithee, peteshr2st and juangalvez 3
alten91 Posted February 25, 2013 Report Posted February 25, 2013 (indicator=)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,""); juangalvez and ⭐ smithee 2
sh11take Posted February 25, 2013 Report Posted February 25, 2013 Thank you for posting the code, but since I'm not a programmer, would you be kind enough to explain the logic in plain English?
crodzilla Posted February 25, 2013 Report Posted February 25, 2013 A rough translation... I'm not a tradestation programmer, but it seems that if the close is higher than 4 bars ago (1 iteration), and current close is less than current open, and the current high is greater than the highs (len) bars ago, then there is a high exhaustion signal. Opposite for the low exhaustion signal. Carl MarketCycle-360.com
MFRU Posted February 25, 2013 Report Posted February 25, 2013 A rough translation... I'm not a tradestation programmer, but it seems that if the close is higher than 4 bars ago (1 iteration), and current close is less than current open, and the current high is greater than the highs (len) bars ago, then there is a high exhaustion signal. Opposite for the low exhaustion signal. Carl could you kindly knock this into an mt4 indi?>:D<
crodzilla Posted February 25, 2013 Report Posted February 25, 2013 I can give it a whirl!!! Carl altoronto and huuu 2 MarketCycle-360.com
sh11take Posted February 25, 2013 Report Posted February 25, 2013 Thank you for the translation, crodzilla!
juangalvez Posted February 27, 2013 Report Posted February 27, 2013 Thank you very much alten91 for provide exhaustion source alten91 1
iwillsurvive Posted February 27, 2013 Report Posted February 27, 2013 Would it be possible for you to create an MT4 indicator for us?
peteshr2st Posted February 27, 2013 Author Report Posted February 27, 2013 Thanks very much for posting the source code and for the rough translation of how it works guys. I am going to try and see if I can get this converted to NT. Looking at the code it is the source for the longer term swings so it's exhaustion bars 1. I've checked the user settings for them in Wave59 and I can see that the difference is EXbars1 = (indicator=)input:qual(6),len(30); and EXBars2 = (indicator=)input:qual(5),len(5); What I don't know is if the source code is identical for both besides that minor input change. Anyways cheers again guys
crodzilla Posted February 27, 2013 Report Posted February 27, 2013 It is probably the same. The code allows for more than higher-high/lower-low of the 4 bars plus the LEN value. So, the bigger LEN is, the more bars (longer trend) there would have to be before a signal is generated. At least, that is what I believe. I will have to code something in MT4 to prove it. Carl MarketCycle-360.com
iwillsurvive Posted February 28, 2013 Report Posted February 28, 2013 It is probably the same. The code allows for more than higher-high/lower-low of the 4 bars plus the LEN value. So, the bigger LEN is, the more bars (longer trend) there would have to be before a signal is generated. At least, that is what I believe. I will have to code something in MT4 to prove it. Carl Thanks Carl, appreciate your help!
leledc Posted February 28, 2013 Report Posted February 28, 2013 (edited) ................ Edited November 24, 2013 by leledc adding image crodzilla, huuu, altoronto and 3 others 6
iwillsurvive Posted February 28, 2013 Report Posted February 28, 2013 Not quite correct, but looks even better than W59. Here are the 2 comparisons: http://postimage.org/image/bgx3tagot/ http://postimage.org/image/un8ikz5ex/
leledc Posted February 28, 2013 Report Posted February 28, 2013 (edited) ................. Edited November 24, 2013 by leledc crodzilla 1
iwillsurvive Posted February 28, 2013 Report Posted February 28, 2013 (edited) I have recoded the source code posted earlier You have a link? ... Edited February 28, 2013 by iwillsurvive
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now