Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 8/24/2007 Posts: 43
|
Do you have or can you program:
Step one: MACD histogram moves down (slowly or faster) while below the zero line on the daily chart.
Step two: MACD histogram moves up (slowly or faster)
then pass
Thanks,
Andreas
|
|
Registered User Joined: 8/24/2007 Posts: 43
|
Upon reflection, could you make that three down bars and then an up bar while below zero. Thanks.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:MACDH Dn3 Then Up1 While Below Zero
'|******************************************************************
'# MH = indicator.Library.MACD Histogram
If MH.Value < 0 AndAlso _
MH.Value(3) < 0 AndAlso _
MH.Value > MH.Value(1) AndAlso _
MH.Value(1) < MH.Value(2) AndAlso _
MH.Value(2) < MH.Value(3) AndAlso _
MH.Value(3) < MH.Value(4) Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |