jtr |
Gold User, Member, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Tuesday, August 19, 2008 |
Monday, February 21, 2011 10:47:07 AM |
19 [0.01% of all post / 0.00 posts per day] |
|
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.
|
Is it possible to see the real code? I have tried to search for it but I keep getting a data base error.
|
Possible to have the RSI bands use the Wilder RSI?
|
Thank you!
|
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.
|
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
|
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
|
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.
|
Awesome Thank You!
|
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
|
|