Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

dovetree

Members
  • Content Count

    44
  • Joined

  • Last visited

Personal Information

  • First Name
    TradersLaboratory.com
  • Last Name
    User
  • City
    Fraser Coast
  • Country
    Australia
  • Gender
    Male

Trading Information

  • Vendor
    No
  1. WHat I'm amazed at is the number of times you would be buying the highs and selling the lows following these scalping methods and the fact that people still try to pump this.
  2. Hi Thanks, I'll have a look but I was hoping to get some opinions of real traders.
  3. Question for anyone using TRO's simple levels 00.25.50.100 trades and strictly following his method? Has anyone other than TRO ever got this to work consistently over a long period?
  4. Kama, You just need to change the plot section of my code to plotlines instead of paintbars and you'll get the result you want Cheers and change LoTime = (jthma(low of Data1,Length)); HiTime = (jthma(low of Data2,Length)); to close of data1... etc
  5. Hi Kama... I'm not exactly sure what you are trying to do but here is a code that calculates the hull moving average with two data time frames and plots it using a paint bar. It is a different solution to, Ithink, the problem you are having. Maybe this will help Inputs: Length (13); Vars: LoTime(0), HiTime(0); LoTime = (jthma(low of Data1,Length)); HiTime = (jthma(low of Data2,Length)); {Trend Up} If (close of Data1 > LoTime and close of Data2 > HiTime) Then plotpaintbar(high,low,"trend",blue) else plotPB(high,low,"trend",lightgray); {Trend Neutral} {If close of Data1 > LoTime and close of Data2 < HiTime Then plotpaintbar(high,low,"Trend",lightgray);} {If close of Data1 < LoTime and close of Data2 > HiTime Then plotpaintbar(high,low,"Trend",lightgray);} {Trend Down} If close of Data1 < LoTime and close of Data2 < HiTime Then plotpaintbar(high,low,"Trend",Red); 1. produce a chart with the lower time frame you want 2 insert same symbol again at the higher time frame 3 apply the indicator hope this helps ps Jthma is the function
  6. It appears the EL collection is all eld files which are unreadable in 2000i thanks anyway
  7. Hi Tams, thanks for the info on ADE do you know if this will also work for Prosuite 2000i? cheers
  8. thanks blu-ray, I did comment it out and the RS still works. Thanks again Dovetree
  9. Hi Blu-ray Thanks for the code, one question though, the last line "setplottype (3,2) is not recognised by ts2000i, would you have any suggestions? thanks again dovetree
  10. Hi Blu-ray, Thanks for your programming efforts they are great. Do you how to get the various indicators(especially the squeeze) indicators into radar screen for prosuite 2000i or do have the ela code for the radar screen version? Thanks
  11. Thanks Simterann22, I give what you suggest a try cheers
  12. Thanks Simterann22, I will have a look at what you suggest. The one problem being currentsession is not a command in Prosuite 2000i( which I use). Thanks again for an interesting code.
  13. Thanks Simerann22, I was actually meaning, say if you lost an hour of data during a trading session because of ISP problems? but I think I see what your getting at anyway. I use TS2000i so cannot use ELD's do you have the code for the gapless "function" that you could post? Thanks
  14. Thanks for this code, WOuld this code be also able to account for gap in data during a period of the day (say when you had a hour down time) and not just the opening gap. Thanks
  15. Hi blu-ray, what is Da? ( line 27)is this Ts word? thanks
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.