New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
INDICATORS UNDER ZERO LINE
i was was wondering if there is a way to set up a scan to detect when an indicator is belowits zero line, say macd histogram is below its zero line or force index is under its zero line things like that
0
Comments
You have to specify a range for the close (<.9, >.85) because if you just say <.9, for instance, that would include, say 70 per cent less or 50 per cent less, etc.
You want to use the max( ) function, which looks for the highest value in the time period you specify, no matter when it occurred in that period.
So, weekly max(6, weekly high) would get the highest high in the past six weeks
Likewise, weekly max(52, weekly) high would get the highest high in the past 52 weeks.
If those two maxes are equal to each other, then the six week high is also the fifty two week high.
If you need help with syntax, follow the links under the "Instructions" link at the bottom of the advanced scan page.
I use the following for the Force
Scan 10 - Force Bearish (crossing below the "0" south)
[type = stock] AND [country = US] AND [Daily SMA(20,Daily Volume) > 200000] AND [Daily SMA(60,Daily
Close) > 5] AND [0 crosses Daily FORCE(13)]
- - - - - - - -
Scan 10A - Force 13 Bullish (crossing above "0" north)
[type = stock] AND [country = US]
//and [SCTR > 90]
AND [Daily SMA(20,Daily Volume) > 500000]
AND [Daily SMA(60,Daily Close) > 5]
AND [ Daily FORCE (13) crosses 0]
Hope this can help.
Quill -
AND [Daily SMA(60,Daily Close) > 5] to read and [Daily SMA(50,Daily Close) > 5]
will notice the big difference when using Freestockcharts.com charts.
Freestockcharts don't work with Google Chrome. Have to use IE.
Quill -