hemant.icharts Site Admin
Joined: 10 May 2011 Posts: 334
|
Post: #1 Posted: Wed Apr 30, 2014 11:46 am Post subject: SMA CROSSOVERS |
|
|
Below are the examples codes, you can customize the parameters as per your requirement. For Help on how to put this code in scanner, you can refer the video https://youtube.googleapis.com/v/icfr0r7vYt8 OR call / mail us.
Bullish
For Bullish Crossover of SMA 5 & 13 use this Code. -- CROSSOVER(SMA(CLOSE, 5), SMA(CLOSE, 13)) = TRUE
For Bullish Crossover of SMA 5 & 20 use this Code -- CROSSOVER(SMA(CLOSE, 5), SMA(CLOSE, 20)) = TRUE
For Bullish Crossover of SMA 13 & 34 use this Code -- CROSSOVER(SMA(CLOSE, 13), SMA(CLOSE, 34)) = TRUE
For Bullish Crossover of SMA 20 & 50 use this Code -- CROSSOVER(SMA(CLOSE, 20), SMA(CLOSE, 50)) = TRUE
For Bullish Crossover of SMA 20 & 89 use this Code -- CROSSOVER(SMA(CLOSE, 20), SMA(CLOSE, 89)) = TRUE
For Bullish Crossover of SMA 34 & 89 use this Code -- CROSSOVER(SMA(CLOSE, 34), SMA(CLOSE, 89)) = TRUE
For Bullish Crossover of SMA 50 & 200 use this Code -- CROSSOVER(SMA(CLOSE, 50), SMA(CLOSE, 200)) = TRUE
For Bullish Crossover of SMA 89 & 200 use this Code -- CROSSOVER(SMA(CLOSE, 89), SMA(CLOSE, 200)) = TRUE
Bearish
For Bearish Crossover of SMA 5 & 13 use this Code. -- CROSSOVER(SMA(CLOSE, 13), SMA(CLOSE, 5)) = TRUE
For Bearish Crossover of SMA 5 & 20 use this Code -- CROSSOVER(SMA(CLOSE, 20), SMA(CLOSE, 5)) = TRUE
For Bearish Crossover of SMA 13 & 34 use this Code -- CROSSOVER(SMA(CLOSE, 34), SMA(CLOSE, 13)) = TRUE
For Bearish Crossover of SMA 20 & 50 use this Code -- CROSSOVER(SMA(CLOSE, 50), SMA(CLOSE, 20)) = TRUE
For Bearish Crossover of SMA 20 & 89 use this Code -- CROSSOVER(SMA(CLOSE, 89), SMA(CLOSE, 20)) = TRUE
For Bearish Crossover of SMA 34 & 89 use this Code -- CROSSOVER(SMA(CLOSE, 89), SMA(CLOSE, 34)) = TRUE
For Bearish Crossover of SMA 50 & 200 use this Code -- CROSSOVER(SMA(CLOSE, 200), SMA(CLOSE, 50)) = TRUE
For Bearish Crossover of SMA 89 & 200 use this Code -- CROSSOVER(SMA(CLOSE, 200), SMA(CLOSE, 89)) = TRUE |
|