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
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by dovetree
-
Hi Trader Lu, Thanks for the code it works in 2000i with some modification. However, the white paint bar completely blots out the colour of the underlying heiken ashi colour (unlike your attached thubnail). I have tried changing the thickness of both the HA and scalper b/s but still get just a white bar.... any suggestions ? Thanks
-
Custom Scalper Buys/Sells - ShowMe Edition
dovetree replied to traderlu's topic in Trading Indicators
Hi Can we get this in ELA code so that those of us with TS 2000i can have a look at the code. Thanks -
Hi Biegea I don't believe your code is marking the paint bars correctly. TTm scalper paints a bar after 3 consecutive higher or lower closes and does not paint anyfurther bars until a revers signal is acquired. I am new to easy language but have coded this in metastock below is the code. The code for higher closes in the highlights Tab BC:=C>Ref(C,-1) AND Ref(C,-1)>Ref(C,-2); SC:=C<Ref(C,-1) AND Ref(C,-1)<Ref(C,-2); X:=If(BC=1,1,If(SC=1,0,PREV)); Cross(X,0.5); Here is the one for the lower closes: BC:=C>Ref(C,-1) AND Ref(C,-1)>Ref(C,-2); SC:=C<Ref(C,-1) AND Ref(C,-1)<Ref(C,-2); X:=If(BC=1,1,If(SC=1,0,PREV)); Cross(0.5,X); I have toruble coverting to EL so far
-
Hi biegea, Sorry just got it going after substituting some of the // for {. At first glance it is pretty good but will let you know. cheers
-
Hi Biega, just installed it and get no bars painted ? Just to clarify the // marks are for comments in TS 8 and above is that correct.
-
Hi Biega, Thanks , this I assume is a paint bar study?
-
Hi Biega, I have Ts 2000i and cant download ELD files could you post the easy language code so I can install this? Thanks
-
Hi, did anyone ever find the easylanguage code for this indicator ?
-
Thanks for the code, I will see how it goes in 2000i. Is it a show me or indicator
-
Re: 3bar trend This sounds a little like the scalper buy or sell signals form TTM but with and niteresting twist. Can you post the actual code rather than a ELD? I have Ts 2000i and cannnot use the ELD. Thanks
-
Soul, Could you post the EL code for these Pivots , I only have Ts2000i Thanks
-
Hi Foxtrot, You may find MetaserverRT at traderssoft.com a better alternative. to hypertools. greta support and a good program.
-
Hi Walter, Offline it seems I can't even feed TS with ANY type of file despite it allowing supposedly anyof a number of files underthe import options (including MS files) it actually "sees" the file but will not import it. It will also not import ascii file that I converted from MS format. Thanks for the reply Any other suggestions? cheers
-
Would anybody know how to convert metastock realtime data into tradestation 2000i. Seems it can read EOD but realtime using the global server is a problem, even though globalserver can supposedly import metastock data? Can anyone suggest a solution? Thanks
-
Hi Walter, As I said I'm relatively new to tradestation, so soory for these question but I'm just trying get a handle on what the coding does for this bb Squeeze ind. Apart from the alert line coloursetc, what term determines the "momentum" part of the indicator. It seems to be "nicknxtmove" but what is the coding for this? or is this a called function?
-
Hi Walter, thanks for that. I did just manage to get the other one working by simply removing the "1) in the line. It now works well. The Change in colour form red to blue is the squeeze Ind alert, is that correct? Thanks again
-
Hi Walter, The code will not verify in 2000i. I think some of the functions are not quite the same, for example it doesn't seem to recognise what the line "SDev = StandardDev(Price, Length, 1);" is. either the term Satandarddev or the ( variables in the brackets) Will investigate further but if you have any suggestions I would be grateful. Thanks
-
Thanks Walter, Will try it
-
This may be a difficult question but how do I get this indicator into Tradestation 2000i. ? relatively new to tradestation. Thanks