mktmole 325 posts msg #136761 - Ignore mktmole |
7/14/2017 11:10:52 AM
Ultimate Stock Scanner. by Mark Helweg of ValueCharts
Buy stocks where "Sustainable" Big Money is flowing into.
Looking for a new "net" high reaching a new 5 day high with a 60 day look back.
The result is displayed as an oscillator,with a range of +30 0 -30
Buying strength > +5
Selling Strength > -5
Add Column > +5 add Column > -5
-----------
TradeStation Code
Inputs: Length(5),Length2(60);
Variables:VarBuy(0),VarSell(0),BuyStrength(0), SellStrength(0), StrDiff(0),
VarF(""),VarSymbol("");
If H>Highest(H,Length)[1] then
VarBuy=H-Highest(H,Length)[1]
Else
VarBuy=0;
if LVarSell=Lowest(L,Length)[1]-L
Else
VarSell=0;
BuyStrength=(summation(VarBuy,Length2))/(AvgTrueRange(Length2));
SellStrength=(sumation(VarSell,Length2))/AvgTrueRange(Length2));
StrDiff=BuyStrength-SellStrength;
|