kayny 2 posts msg #152023 - Ignore kayny |
5/2/2020 2:28:36 PM
I made filter as below
---------------------------------------
Show stocks where close 1 week ago is below close 27 weeks ago
and close is above high 26 week ago
and close is above ma(200)
and chart-display is weekly
set{lagging, DMA(1,-25)}
and draw lagging on plot price
and in US market is not ETF
and in US market is not OTCBB
-------------------------------------------
But the result comes mixed with price under the ma(200)
Anyone know what's going on?
|
snappyfrog 721 posts msg #152035 - Ignore snappyfrog |
5/3/2020 4:29:24 AM
Making it clickable:
|
nibor100 1,031 posts msg #152037 - Ignore nibor100 |
5/3/2020 7:37:28 AM
@kayny,
Your charts are displaying the weekly 200 moving avg and not the daily 200 mov avg. I'm not sure which on you want to see....
If you add these 2 lines to your filter you can easily compare them to the daily stock closes:
add column ma(200)
add column weekly ma(200)
Ed S.
|
kayny 2 posts msg #152039 - Ignore kayny |
5/3/2020 9:47:13 AM
@nibor100
Thank you so much.
Your help solved the issue.
|