Stage Analysis Forum - Trading & Investing using Stan Weinstein's Stocks Breakout method
UK Stocks and ETFs - Watchlist and Discussion - Printable Version

+- Stage Analysis Forum - Trading & Investing using Stan Weinstein's Stocks Breakout method (https://www.stageanalysis.net/forum)
+-- Forum: Main Board (https://www.stageanalysis.net/forum/Forum-Main-Board)
+--- Forum: Stan Weinstein's Stage Analysis - Stock Charts, Technical Analysis, Learn to Trade, Stocks, ETF, NYSE, Nasdaq (https://www.stageanalysis.net/forum/Forum-Stan-Weinstein-s-Stage-Analysis-Stock-Charts-Technical-Analysis-Learn-to-Trade-Stocks-ETF-NYSE-Nasdaq)
+--- Thread: UK Stocks and ETFs - Watchlist and Discussion (/Thread-UK-Stocks-and-ETFs-Watchlist-and-Discussion)



RE: UK Stocks - Watchlist and Discussion - isatrader - 2014-01-31

UK stocks for the watchlist today - SEE.L, MWE.L, PEN.L, CVSG.L, STAF.L, TLDH.L, TON.L, INSP.L, AMED.L, ELE.L, MTW.L


RE: UK Stocks - Watchlist and Discussion - isatrader - 2014-01-31

UK stocks for the watchlist today - SEE.L, MWE.L, PEN.L, CVSG.L, STAF.L, TLDH.L, TON.L, INSP.L, AMED.L, ELE.L, MTW.L


RE: UK Stocks - Watchlist and Discussion - Tryst - 2014-01-31

i have the screener doc already, thanks


RE: UK Stocks - Watchlist and Discussion - Tryst - 2014-01-31

i have the screener doc already, thanks


RE: UK Stocks - Watchlist and Discussion - isatrader - 2014-01-31

Here's the daily volume screen I run that finds the best candidates for the watchlist

Code:
indicator1 = Volume
indicator2 = Average[200](Volume)
c1 = (indicator1 > (indicator2*2))

c2= Close[0] > Close[1]

c3= Average[10](Close[0]) > Average[10](Close[1])

c4= Close > 5

Condition1 = (Close[0]-Close[1]) / AverageTrueRange[200](close)

SCREENER[c1 AND c2 AND c3 AND c4] (Condition1 AS "ATR change")



RE: UK Stocks - Watchlist and Discussion - isatrader - 2014-01-31

Here's the daily volume screen I run that finds the best candidates for the watchlist

Code:
indicator1 = Volume
indicator2 = Average[200](Volume)
c1 = (indicator1 > (indicator2*2))

c2= Close[0] > Close[1]

c3= Average[10](Close[0]) > Average[10](Close[1])

c4= Close > 5

Condition1 = (Close[0]-Close[1]) / AverageTrueRange[200](close)

SCREENER[c1 AND c2 AND c3 AND c4] (Condition1 AS "ATR change")



RE: UK Stocks - Watchlist and Discussion - Tryst - 2014-02-02

(2014-01-31, 09:39 PM)isatrader Wrote: Here's the daily volume screen I run that finds the best candidates for the watchlist

Code:
indicator1 = Volume
indicator2 = Average[200](Volume)
c1 = (indicator1 > (indicator2*2))

c2= Close[0] > Close[1]

c3= Average[10](Close[0]) > Average[10](Close[1])

c4= Close > 5

Condition1 = (Close[0]-Close[1]) / AverageTrueRange[200](close)

SCREENER[c1 AND c2 AND c3 AND c4] (Condition1 AS "ATR change")

Thanks, Isatrader. I'm going to start having a play around with the screener in ProRealTime today.

With the latest code you pasted here, is this run on a weekly chart?

I'm trying to understand what the array for 'Close' is as you are using array indexers (c2= Close[0] > Close[1]). If you are using a weekly chart, does 'Close[0]' mean the latest/current weekly close (price or volume?)? and 'Close[1]' means the previous weekly close (price or volume)?

Thanks


RE: UK Stocks - Watchlist and Discussion - Tryst - 2014-02-02

(2014-01-31, 09:39 PM)isatrader Wrote: Here's the daily volume screen I run that finds the best candidates for the watchlist

Code:
indicator1 = Volume
indicator2 = Average[200](Volume)
c1 = (indicator1 > (indicator2*2))

c2= Close[0] > Close[1]

c3= Average[10](Close[0]) > Average[10](Close[1])

c4= Close > 5

Condition1 = (Close[0]-Close[1]) / AverageTrueRange[200](close)

SCREENER[c1 AND c2 AND c3 AND c4] (Condition1 AS "ATR change")

Thanks, Isatrader. I'm going to start having a play around with the screener in ProRealTime today.

With the latest code you pasted here, is this run on a weekly chart?

I'm trying to understand what the array for 'Close' is as you are using array indexers (c2= Close[0] > Close[1]). If you are using a weekly chart, does 'Close[0]' mean the latest/current weekly close (price or volume?)? and 'Close[1]' means the previous weekly close (price or volume)?

Thanks