- Joined
- 20 April 2016
- Posts
- 9
- Reactions
- 22
Many thanks Skate, you have been most generous with your time and expertise. So far, I have come up with the following draft code:
//Index Filter for XAO with a 200Day MA on a Daily Chart
Index = Foreign("XAO", "C", True);
IndexMA = MA(Index, 200);
Buy = C >= MA(C, 200) AND Index >= IndexMA;
Sell = C <= MA(C, 200);
//* Note I assume I need to add more code here to get some columns for a print out of where the XAO is crossing the 200Day MA. // Is that right? Am I on the right track?
I appreciate the additional comments you have provided me. It is good to know that Joe Marwood is a local. I will endeavor to look closer at his resources.
Aristotle
//Index Filter for XAO with a 200Day MA on a Daily Chart
Index = Foreign("XAO", "C", True);
IndexMA = MA(Index, 200);
Buy = C >= MA(C, 200) AND Index >= IndexMA;
Sell = C <= MA(C, 200);
//* Note I assume I need to add more code here to get some columns for a print out of where the XAO is crossing the 200Day MA. // Is that right? Am I on the right track?
I appreciate the additional comments you have provided me. It is good to know that Joe Marwood is a local. I will endeavor to look closer at his resources.
Aristotle