peteshr2st Posted February 18, 2013 Report Share 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! Quote Link to comment Share on other sites More sharing options...
Neowave Posted February 19, 2013 Report Share 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, peteshr2st and pipseeker 3 Quote Link to comment Share on other sites More sharing options...
crodzilla Posted February 20, 2013 Report Share Posted February 20, 2013 That domain is defunct. Quote MarketCycle-360.com Link to comment Share on other sites More sharing options...
peteshr2st Posted February 21, 2013 Author Report Share 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 :) Quote Link to comment Share on other sites More sharing options...
Neowave Posted February 21, 2013 Report Share 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. Quote Link to comment Share on other sites More sharing options...
peteshr2st Posted February 21, 2013 Author Report Share 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 Quote Link to comment Share on other sites More sharing options...
iwillsurvive Posted February 22, 2013 Report Share 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? Quote Link to comment Share on other sites More sharing options...
juangalvez Posted February 25, 2013 Report Share Posted February 25, 2013 I am interested too in having this indicator source code: would like to know what is based on. Thanks Quote Link to comment Share on other sites More sharing options...
alten91 Posted February 25, 2013 Report Share 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, juangalvez and peteshr2st 3 Quote Link to comment Share on other sites More sharing options...
alten91 Posted February 25, 2013 Report Share 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,""); ⭐ smithee and juangalvez 2 Quote Link to comment Share on other sites More sharing options...
sh11take Posted February 25, 2013 Report Share 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? Quote Link to comment Share on other sites More sharing options...
crodzilla Posted February 25, 2013 Report Share 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 Quote MarketCycle-360.com Link to comment Share on other sites More sharing options...
MFRU Posted February 25, 2013 Report Share 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< Quote Link to comment Share on other sites More sharing options...
crodzilla Posted February 25, 2013 Report Share Posted February 25, 2013 I can give it a whirl!!! Carl altoronto and huuu 2 Quote MarketCycle-360.com Link to comment Share on other sites More sharing options...
sh11take Posted February 25, 2013 Report Share Posted February 25, 2013 Thank you for the translation, crodzilla! Quote Link to comment Share on other sites More sharing options...
juangalvez Posted February 27, 2013 Report Share Posted February 27, 2013 Thank you very much alten91 for provide exhaustion source alten91 1 Quote Link to comment Share on other sites More sharing options...
iwillsurvive Posted February 27, 2013 Report Share Posted February 27, 2013 Would it be possible for you to create an MT4 indicator for us? Quote Link to comment Share on other sites More sharing options...
peteshr2st Posted February 27, 2013 Author Report Share 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 Quote Link to comment Share on other sites More sharing options...
crodzilla Posted February 27, 2013 Report Share 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 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 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! 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 adding image chandu1713006579, alten91, huuu and 3 others 6 Quote Link to comment Share on other sites More sharing options...
chandu1713006579 Posted February 28, 2013 Report Share Posted February 28, 2013 good work!Let us check. Quote Link to comment Share on other sites More sharing options...
iwillsurvive Posted February 28, 2013 Report Share 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/ 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 crodzilla 1 Quote Link to comment Share on other sites More sharing options...
iwillsurvive Posted February 28, 2013 Report Share Posted February 28, 2013 (edited) I have recoded the source code posted earlier You have a link? ... Edited February 28, 2013 by iwillsurvive 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.