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.
Are we allowed to place ratios inside of scans?
Specifically, can I replace this:
and [ema(65, close) > 30 days ago ema(65, close)]
with something like this:
and [ema(65, (close:VTI)) > 30 days ago ema(65, (close:VTI)]
So far, I'm getting errors. Am I doing something wrong or is this just not allowed?
THANKS!!
0
Comments
You might try scanning for ROC(65) values against the hard coded values for VTI's ROC(65) today and 30 days ago. It wouldn't give you the smoothing of the ema though.
@Gord or @ekwong might have better ideas of how you might accomplish what you are looking for.
[type = stock] AND
[[group is 'DOW30'] OR [symbol is "VTI"]]
rank by [ROC(30,ema(65,daily close))]
You will see this as scan result:
You can use this to verify:
http://schrts.co/whZRHd
Specifically, I'm interested replicating this in my scan and then being sure a stock's EMA(65) for each of these four is ascending in recent days or weeks. Is this at all possible?!?!?
If you want to find stocks that suit your conditions, I think you have to follow @ekwong 's model, except you need a list to test each condition.
So you might begin with a list of sector SPDRS (XLE, XLB, etc). that also included VTI, and then run ek's scan against it.
For the sectors that come up above VTI, you would run the same scan condition against a list of industries for that sector than includes the sector SPDR, etc., then for stocks in the industries above the sector SPDR in an industry list that includes the industry $DJUS index.
Complex process - and a lot of list making - but it's a complex query. Maybe some one else has a more direct approach.