Registered User Joined: 2/15/2010 Posts: 6
|
I am a new user trying to create a %K stochastic crossing rule. Need to meet the following criteria. I know how to use the create rule function. Need help setting the conditions below:
%K is moving up
%K has crossed over sold and is between value 23 to 28
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You could just right-click on the %K three times, select Create Rule | Moving Up, Create Rule | Greater Than Value: 23, and Create Rule | Less Than Value: 28 and then Drag and Drop the Rules onto each other to create a Combo Rule.
Another option would be to Drag and Drop the %K into the Code tab of the RealCode Editor to create something similar to the first line of the following RealCode Rule:
'# Stoc = indicator.Stochastics
If Stoc.Value > Stoc.Value(1) AndAlso _
23 <= Stoc.Value AndAlso _
Stoc.Value <= 28 Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|