Registered User Joined: 4/12/2010 Posts: 14
|
Would you please assist with this candlestick pattern? Looking for a hanging man candlestick with a long lower shadow, compared to the body. The shadow should be 3 times as long as the body. No upper shadow. I am having difficulty with programing %'s of bodies and shadows...but I WILL GET IT SOMEDAY!!!!!!!!!!!!!!!!! Thanks,
MOPMAN
|
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:Hanging Man Bearish Reversal
'|******************************************************************
Dim BodyTop As Single = System.Math.Max(Price.Open, Price.Close)
Dim BodyBot As Single = System.Math.Min(Price.Open, Price.Close)
If Price.High = BodyTop AndAlso _
BodyBot - Price.Low >= _
3 * (BodyTop - BodyBot) AndAlso _
BodyBot > Price.Low Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|