Hi,
Can you help me with following.
I would like to see on a weekly timeframe all the assets that meet the following requirements:
- The current price candle crosses below the SMA5
- Last 2 weeks close was above the SMA5
- The average weekly volume over last 7 weeks has to be above 10 million
- The price needs to be above 10 usd
- The bolinger bandwidth (20 2) needs to be above 0.15
Thanks a lot
Gr Marco
JSParticipant
Veteran
Hi,
Hereby the screener…
TimeFrame(Weekly)
SMA5=Average[5](Close)
C1=Close Crosses Under SMA5
C2=Summation[3](Close>SMA5)=2
C3=Average[7](Volume)>10000000
C4=Close>10
C5=BollingerBandWidth[20](Close)>0.15
Screener[C1 and C2 and C3 and C4 and C5](Close<SMA5 as "Close below SMA5")
Hi JS,
Just a quick question, can you tell me where to find more information on the last line of the code, in particular this part: (Close<SMA5 as “Close below SMA5”). Where do I find information on this? I have seen this written in several different ways and I dont understand what its referencing. Sometimes its written as condition1 is ‘No” and sometimes other versions that I dont follow.
Thanks,
Shane
JSParticipant
Veteran
Hi Shane,
After the “screener” part (Screener[…]) you can come up with something to put as a title above the column with results (I think this is optional…)
So suppose I have condition C1=Close>Average[10](Close) then I can close the screener with for example:
C1=Close>Average[10](Close)
Screener[C1](C1 as “Hooray the close is above average”)