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

Everything posted by dovetree

  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
  16. Hi Blu-Ray, Thanks for these. I noticed that your squeeze seems to be a little different to the original. Specifically it seems to filter out some "false squeezes". I use Ts 2000i could you please post the code for this if possible. thanks
  17. Hi Blu ray, I thank you agian for the work. It appears the following code works with 2000i. vars: LL(0),HH(0); if date <> date[1] then begin LL = low; HH = High; end; if Low < LL then LL = Low; if High > HH then HH = high; if upticks > downticks then value1 = (upticks-downticks) else value1 = -(downticks-upticks); plot1(value1,"ticks"); if plot1 > 0 then setplotcolor(1,green) else setplotcolor(1,red); if low = LL and value1> 0 then begin setplotcolor(1,blue); Alert( "New Low_Divergence"); end; if high = HH and value1< 0 then begin setplotcolor(1,magenta); Alert ("New High_Divergence"); end; The solution seems to be working OK but if you can see a problem with the code I would appreciate your further input. thanks
  18. HI Blueray, The only problem with the code I see so far for 2000i is upcolor and down colour etc. These words again are not recognised. Will have to add some type of line like If value > than 0 colour green, or value <0 color red etc. Thanks
  19. HI Blue Ray, Thanks for the code. I will get it into 2000i and let you know. really appreciate the time you have spent on this. thanks
  20. Hi Blue Ray, Thanks for that, but I have one small request though, ELD's cant be read by 2000i could you please post as an ELA or just the code so I can get it into TS. Thanks
  21. Hi Zdo, can you define what "insidebid"and Insideask" is for the current TS then I might be able to come up with something for 2000i thanks
  22. Hi Blue ray, Zdo, thanks the datacompression worked but as zdo suspected insidebid insideask is not 2000i compatible. Zdo 2000i is capable od using ticks so im not sure that we are done yet. thanks for the help
  23. Hi Zdo, Thanks, Ive tried that and verification gets past those terms but obviously there are other terms that are not recognized by 2000i, the next one is "bartype". thanks
  24. Hi Ive been trying to convert this to TS 2000i. I cannot get it to verify. Can someone suggest what the trouble maybe with lines like Intrabarpersist Mycurrentbar(0), which comes up as expecting "(" or word not recognised? thanks
  25. Could some one post the EL code for these please. ELD files are unreadable to TS 2000i users. Thanks
×
×
  • Create New...

Important Information

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