Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: jtr
About
User Name: jtr
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Tuesday, August 19, 2008
Last Visit: Monday, February 21, 2011 10:47:07 AM
Number of Posts: 19
[0.01% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: Clear Method
Posted: Thursday, September 2, 2010 10:43:26 PM
Is it possible to have this as an indicator?  One for uptrend and one for down.  For example on the uptrend would it be possible to create a line that would show the Highet Low and Lowest high for downtrend.(like figure 5 in S&C,pg20)  I would like to be able to use it for backtesting some ideas.
Topic: RSI Bands
Posted: Monday, January 25, 2010 8:08:10 PM
Is it possible to see the real code?  I have tried to search for it but I keep getting a data base error.
Topic: RSI Bands
Posted: Sunday, January 24, 2010 11:20:44 AM
Possible to have the RSI bands use the Wilder RSI?
Topic: plot crossover
Posted: Tuesday, January 12, 2010 4:02:59 PM
Thank you!
Topic: plot crossover
Posted: Tuesday, January 12, 2010 12:47:16 PM
Is it possible to plot the crossovers of an indicator or moving average?  For example, using the MACD is it possible to plot when the macd crosses the moving average? (up and down, or seperatly) in its own window.  Just like to see the points and the distance, slope, etc between the points. 
Topic: Color price bars - day forward
Posted: Sunday, November 23, 2008 2:34:35 PM
I am trying to get a paint bar that will paint the high/low.  How do I get it to look one day forward?  It seems that when I use something like" price.low(-1)" the code does not like the -1.  Soon as I do that all the price bars change color.  Soon as I take that code out of there it is fine.
code looks something like this,
IF price.low(0) < price.low(1) and price.low(0) < price.low(-1) then pass

Also is there a way to ask the code to look at the past three bars?  instead of doing price.low(0), price.low(1),price.low(2), etc?

Thanks
Joel
Topic: Create an Index/Stock
Posted: Wednesday, November 5, 2008 10:57:22 PM
Is it possible to create an index/stock from a watch list?  I would like to be able to chart my watch list as if it were an index or stock.  I could then look at its MA, macd, rsi, etc. 

-Joel
Topic: Data between two points and starting a count
Posted: Saturday, September 6, 2008 12:32:42 AM
jschott
Thanks for the information.  The reason for asking was I was trying to find out how hard it would be for me to implement/create an indicator that was not standard.  I thought it would be interesting to use the basis of TD Combo because it has a few moving parts and a lot of people are aware of them and would know what I was talking about.  I know that what I created is not a TD anything, but does use some of his rules. 

As for the copyright thing I think that he cares more about people selling them.  He has many books and articles were he goes over discusses what qualifies for a set up, etc. In his book(DeMark on Day Trading Options) he states:
" Our legal counsel advised us to trademark our indicators to ensure proper conrol of their distribution and to limit our liability should others offer facsimiles for sale and distribution and misrepresent their effectiveness or intended application"
I am not a copyright lawyer by any stretch of the imagination.  But to me that means if you try and make money off his work, thats when you can get in trouble.  I have tried his indicators in the past through CQG and there are a ton.  All were impressive in there own right. What I am showing in this thread is in no way or shape a TD indicator, its just usses some of his basic rules. 
Topic: Data between two points and starting a count
Posted: Thursday, September 4, 2008 11:37:40 PM
Awesome Thank You!
Topic: Data between two points and starting a count
Posted: Thursday, September 4, 2008 10:38:31 PM
ahh ok got it to plot the count for me.  Which is kinda nice to see.  This is what I got.  Let me know if it look right.

'# TDSe = condition.TDSequential

Static count As Integer

If TDSe.value(1) = True Then
    count = -9
End If
'# targetDays = userinput.integer = 13

If isfirstbar Then
    count = 0
End If

If price.close < price.close(2) Then
    count += 1
    
End If


If count = targetDays Then
    plot = count
    
End If