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
-
dovetree started following Custom Scalper Buy/Sell, Offering Help, 2 Indicator 1 Chart 2 Times. and and 7 others
-
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.
-
Hi Thanks, I'll have a look but I was hoping to get some opinions of real traders.
-
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?
-
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
-
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
-
It appears the EL collection is all eld files which are unreadable in 2000i thanks anyway
- 22 replies
-
- ade
- elcollections
-
(and 3 more)
Tagged with:
-
Hi Tams, thanks for the info on ADE do you know if this will also work for Prosuite 2000i? cheers
- 22 replies
-
- ade
- elcollections
-
(and 3 more)
Tagged with:
-
Various Indicators (Squeeze,2FastMa's,etc)
dovetree replied to Blu-Ray's topic in Trading Indicators
thanks blu-ray, I did comment it out and the RS still works. Thanks again Dovetree -
Various Indicators (Squeeze,2FastMa's,etc)
dovetree replied to Blu-Ray's topic in Trading Indicators
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 -
Various Indicators (Squeeze,2FastMa's,etc)
dovetree replied to Blu-Ray's topic in Trading Indicators
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 -
Thanks Simterann22, I give what you suggest a try cheers
-
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.
-
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
-
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
-
Hi blu-ray, what is Da? ( line 27)is this Ts word? thanks