Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 3/30/2008 Posts: 97
|
I tried to apply the down candle rule to my chart (down candle, red) but it doesn't change the candle colors. They are all green. Yet the rule is sitting there posted along the bottom of my graph along with my other rules that are working (for MAs, etc.).
What am I doing wrong, or not doing?
BN
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I don't know. It seems to work correctly when I add it. Have you selected Paint Price when Passing for the Down Candle Rule?
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 3/30/2008 Posts: 97
|
Yes, did that. The red down rule worked on my other chart... (I'm new to Stockfinder, but not TC).
Bob
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
We have not been able to duplicate the issue in house. Please select Help | Send Layout so technical support can take a look. Please include a description of the issue you are experiencing when sending the Layout to technical support.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 1/12/2007 Posts: 23
|
I am having the same problem. Set down candles to RED, but unless I change timeframes on charts, they just sit GREEN. (Yes, I checked "Paint")
What is the REAL CODE for this?
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
lescohn,
If you want a RealCode Paint Brush that uses the same algorithm as the Down Candle RealCode Rule from the Web Library:
- Right-click on the Price History and select Edit Colors.
- Check Paint Indicator with RealCode (or select Edit).
- Replace everything in the Code tab of the RealCode Editor with the following and select Apply | OK.
If Price.Open > Price.Last Then
PlotColor = Color.Red
Else
PlotColor = Color.Lime
End If
Alternately, you could use the following RealCode instead:
If Line.Open > Line.Last Then
PlotColor = Color.Red
Else
PlotColor = Color.Lime
End If
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 1/12/2007 Posts: 23
|
Bruce,
Thanks. I added the Real Code and it still does not work.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
lescohn,
Then you will need to contact technical support. Please select Help | Send Layout so technical support can take a look. Please include a description of the issue you are experiencing when sending the Layout to technical support.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |