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.
Options

MA cross over

Hello

I want to scan for weekly moving average cross over. Is the following language written correctly ?

1. [this week's ema(5,close) > this week's ema (8,close)] and [last week's ema(5,close) < last week's ema (8,close)]

or

2. [this week's ema (5,close) x this week's (8,close)].

Thanks for your help.

Comments

  • Options
    and [weekly ema(5,weekly close) x weekly ema (8, weekly close)]

    that says, this week's ema 5 of weekly closes crossed above this week's ema 8 of weekly closes.

    You need the modifier weekly in front of the function ema( ), and within the parentheses of the function to tell it what to average, in the this case, weekly closes.

    If you put no modifier, the scan engine assumes you mean daily. So, if you leave out a modifier, the scan syntax checker may not give you an error, but you would be asking for, for instance, a weekly ema of a daily close, which doesn't make sense.
  • Options
    Thanks, markd.

    I didnt know about the modifier and thanks for pointing that out.

    If Instead if I want to scan for weekly ema (5,close) crosses up weekly ema (8,high), is the following correct ?

    [weekly ema (5, weekly close) x weekly ema (8, weekly high)] ? Thanks.
  • Options
    should work. Keep in mind though, as a rule of thumb, every line in a scan except the first one begins with "and".
Sign In or Register to comment.