dashover 229 posts msg #126283 - Ignore dashover modified | 
11/21/2015 3:11:45 PM
  Compression with a trendline break?
 
 Has anyone studied this?
 https://www.youtube.com/watch?v=JLS5P58PCMg
 
 I tried my best 
 
 optionable
 price > $10
 
 not etf
 
 price near 20 day high
 ratio30 5 days ago < -1
 volmult > 0 
 
 set{diff12,close minus close 2 days ago}
 set{diff12%,diff12 / close 2 days ago}
 set{2daychange,diff12% * 100}
 
 Average Volume(30) > 1000000
 add column ratio2
 2daychange
 
 set{diff9,day change * close 1 day ago}
 set{Chg,diff9 / 100}
 add column Chg 
 
 /* Shows Current location of a stock in respect to it's 52 week high and low */ 
 
 set{LOW52, low 52 week low} 
 set{HIGH52, high 52 week high} 
 set{SPREAD52, HIGH52 - LOW52} 
 set{CLOSE52, close - LOW52} 
 set{LOCATION52, CLOSE52 / SPREAD52} 
 set{POSITION, LOCATION52 * 100} 
 
 add column POSITION 
 
 and sort column 5 descending 
 
 /* Add your criteria here */ 
 
 and Average Volume(30) is above 1000000
 
 
 /* and POSITION is below 20 
 and POSITION is above POSITION 1 week ago 
 and close is at a 1 week high */ 
 
 
 add column average volume (30)
 set{voldiff,volume minus average volume (30)}
 set{volmult,voldiff/ average volume (30)}
 
 add column volmult 
 
 set{diff5,close minus close 5 days ago}
 set{diff5%,diff5 / close 5 days ago}
 set{%change5,diff5% * 100}
 
 
 add column %change5
 
 set{diff,close minus close 30 days ago}
 set{diff%,diff / close 30 days ago}
 set{ratio30,diff% * 100}
 
 
 add column ratio30
 
 
 set{diff2,close minus close 90 days ago}
 set{diff2%,diff2 / close 90 days ago}
 set{ratio90,diff2% * 100}
 
 
 add column ratio90
 
 
 
 
 set{diff180,close minus close 180 days ago}
 set{diff180%,diff180 / close 180 days ago}
 set{ratio180,diff180% * 100}
 
 add column ratio180 
 
 
 set{diff365,close minus close 365 days ago}
 set{diff365%,diff365 / close 365 days ago}
 set{%change365,diff365% * 100}
 
 
 add column %change365
 
 set {rs,relative strength(^spx)}
 add column rs
 
 add column dividend yield
 add column 55dayhigh
 
 add column atr(1)
 set{55dayhigh,55 day high}
 
 
 add column %of55high
 set {%of55high,price/55dayhigh }
 
 
 
 
 
  |