Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 8/24/2007 Posts: 43
|
Any chance of getting the layout/indicator described in this months' Stocks and Commodities Magazine?
Andreas
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You could use something similar to the following RealCode Paint Scheme for Volume:
PlotColor = Color.Gray
If Line.Value > Line.Value(10) Then
If Price.Last > Price.Last(10) Then
PlotColor = Color.Green
Else If Price.Last < Price.Last(10) Then
PlotColor = Color.Red
End If
Else If Line.Value < Line.Value(10) Then
If Price.Last > Price.Last(10) Then
PlotColor = Color.Blue
Else If Price.Last < Price.Last(10) Then
PlotColor = Color.Orange
End If
End If
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 8/24/2007 Posts: 43
|
Super, I will give it a try!
Andreas
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |