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

beating my head with this scan. please help

[group is SP500] or [group is SP600] or [group is SP400] or [group is NASDAQ100] and

[ [ [weekly PPO Line(5,52,0) x 0] and                                                                    // PPO crosses above zero
    [weekly CCI(52) x 0] ] or                                                                                        // CCI crosses above zero

 [ [weekly PPO Line(5,52,0) x 0] and                                                                        // PPO crosses above zero
   [weekly EMA(52,close) > 5 weeks ago weekly EMA(52,close)] and          // current slope positive
   [1 weeks ago weekly EMA(52,close) < 6 weeks ago weekly EMA(52,close)] ]  or // prior slope negative

 [ [weekly CCI(52) x 0] and                                                                                     // CCI crosses above zero
   [weekly EMA(52,close) > 5 weeks ago weekly EMA(52,close)] and                // current slope positive
   [1 weeks ago weekly EMA(52,close) < 6 weeks ago weekly EMA(52,close)] ] ]   // prior slope negative

The second example looks for two of the three trend indicators to be positive. Notice that there are three possibilities for an uptrend. PPO and CCI are positive. PPO and Slope are positive. CCI and Slope are positive. 

[group is SP500] or [group is SP600] or [group is SP400] or [group is NASDAQ100] and

[ [ [weekly PPO Line(5,52,0) > 0] and                                                            // PPO is positive
    [weekly CCI(52) > 0] ] or                                                                            // CCI is positive

 [ [weekly PPO Line(5,52,0) > 0] and                                                            // CCI is positive
   [weekly EMA(52,close) > 5 weeks ago weekly EMA(52,close)] ] or        // Slope is positive

 [ [weekly CCI(52) > 0] and                                                                          // CCI is positive
   [weekly EMA(52,close) > 5 weeks ago weekly EMA(52,close)] ] ]           // Slope is positive

Comments

Sign In or Register to comment.