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.
Is there a way to come up with a syntax that will provide a scan that shows such as 1% within SMA preferably greater than.
0
Comments
and [close < sma(200,close) *1.01]
and [close > sma(200,close) * .99]
Note you need both an upper limit statement and a lower limit statement.
If you just say
and [close < sma(200,close) *1.01]
the result will be anything less than 1% above the sma - so it could be a close 20% below the sma because that is less than 1% above it.
If you want results ONLY above (greater than) the 200 MA, then the lower limit statement would be
and [close > sma(200, close)]