Hello,
I am currently using the below scan to identify Momentum Buy on SMA, MACD and RSI becoming true, it is a very useful scan so far. However, in these bearinsh times I would like to scan for Momentum sells, can anyone please help me with the inverse of the scan for below:
// Scan starts here
[type = stock]
and [
[
[SMA(5,close) x SMA(15,close)] and
[RSI(14) > 50] and
[MACD Line(12,26,9) > MACD Signal(12,26,9)] and
[MACD Line(12,26,9) > 0]
]
or
[
[SMA(5,close) > SMA(15,close)] and
[RSI(14) x 50] and
[MACD Line(12,26,9) > MACD Signal(12,26,9)] and
[MACD Line(12,26,9) > 0]
]
or
[
[SMA(5,close) > SMA(15,close)] and
[RSI(14) > 50] and
[MACD Line(12,26,9) x MACD Signal(12,26,9)] and
[MACD Line(12,26,9) > 0]
]
or
[
[SMA(5,close) > SMA(15,close)] and
[RSI(14) > 50] and
[MACD Line(12,26,9) > MACD Signal(12,26,9)] and
[MACD Line(12,26,9) x 0]
]
]
and [
[favorites list is 26] // Nifty 50
OR
[favorites list is 27] // Nifty Next 50
]
0
Comments
Also, your scan will run faster if you put your lists (the Nifty 50s) statement at the TOP of your scan as the first line(s). That way, the scan will look at ONLY the stocks in your lists instead of looking at ALL the several thousand symbols in the scan engine database.
Changed all > to < and made below changes which I wish to run by you once ...
Especially the changes made in :
a.) SMA with x reversed to pick SMA 15 rising over SMA 5
b.) RSI: 50 x RSI
c.) MACD: [MACD Signal(12,26,9) x MACD Line(12,26,9)
[type = stock] // test
and [
[favorites list is 26] // Nifty 50
OR
[favorites list is 27] // Nifty Next 50
] and
[
[
[SMA(15,close) x SMA(5,close)] and [RSI(14) < 50] and [MACD Line(12,26,9) < MACD Signal(12,26,9)] and [MACD Line(12,26,9) < 0]
]
or
[
[SMA(5,close) < SMA(15,close)] and [50 x RSI(14)] and [MACD Line(12,26,9) < MACD Signal(12,26,9)] and [MACD Line(12,26,9) < 0]
]
or
[
[SMA(5,close) < SMA(15,close)] and [RSI(14) < 50] and [MACD Signal(12,26,9) x MACD Line(12,26,9)] and [MACD Line(12,26,9) < 0]
]
or
[
[SMA(5,close) < SMA(15,close)] and [RSI(14) < 50] and [MACD Line(12,26,9) < MACD Signal(12,26,9)] and [0 x MACD Line(12,26,9)]
]
]