Registered User Joined: 6/20/2009 Posts: 13
|
How do I setup an alert for CCI moving up and cossing -50 towards 0 but it's not over 0 yet on daily chart?
thank you
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you Drag and Drop the CCI Indicator into the Code tab of the RealCode Editor, it should create something similar to the first line of the following RealCode Rule:
'# CCIC = indicator.CommodityChannelIndexCCI
If CCIC.Value > -50 AndAlso _
CCIC.Value <= 0 AndAlso _
CCIC.Value > CCIC.Value(1) Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|