Hi,
would like to create a indicater which shows increasing price spread today as a percentage .
and a separate increasing volume indicator in percentages today .So can then use it to find which stocks have increasing volume in the last 1 or two days with increasing spreads in the last one or two days .Tall request ,please help
|
I AM TRYING TO MAKE A BREAKOUT SCAN ,COULD YOU PLEASE HELP WITH FORMULA
BREAKOOUT FORMULA
(( HIGHOF THE PAST 20 TRADING SESSIONS-LOW OF THE PAST 20 TRADING SESSIONS) / HIGH OF THE PAST 20 TRADING SESSIONS +LOW OF THE PAST 20 TRADING SESSIONS ) / 2 < .15 AND THE MOST RECENT CLOSE > HIGH OF THE PAST 20 TRADING SESSIONS
BASICALLY THE BREAKOUT SCAN HELPS IDENTIFY STOCKS HITTTING NEW 20 DAY HIGHS .
|
Hi Bruce
would like to compare PERCENTAGE CHANGE of symbol or ETF or index with SP-500 for relative strength or spot bullish divergence with SP-500 graphically or numerically.
also in the same layout or chart would like PERCENTAGE RANGE of a stock or index when it closes
relative strength in itself .IF this can have timeline toolbar which can choose the time interval
say during a broad mkt pullback which index stayed afloat or did not fall as much ,this info could be awesome!
Thanx
|
Hi
C < C9 AND C < C8 AND C < C7 AND C < C6 AND C < C5 AND C < C4 AND C < C3 AND C < C2 AND C < C1 using this code in telechart could you please convirt it to stockfinder language.
Thanx
|
Hi Bruce,
as to your question of previous request,i am looking specifically
For an sorting function like TC 2007 already has for price % change from a particular date to another
date
Instead of price% change i would prefer a volume % change ,sorting function off all stocks in TC 2007,or for any watch list between a particular date (back date ) and moving forward to another date
for instance lets say from march 9TH to July 13 ,sort volume % change of all stocks in watch list and in ranking order. thanx
|
request and need a formula for Vol % for all stocks for eg on Oct 1 or oct 2 ,but not limited to those dates in stockfinder .this is a back date .thanx
|
request and need a formukla that gives Volume % for All stocks in Tc 2007 on a backdate for eg on
October 1 and October 2,but not limited to those dates alone
Thanx
|
request and need a formukla that gives Volume % for All stocks in Tc 2007 on a backdate for eg on
October 1 and October 2,but not limited to those dates alone
Thanx
|
Hi
in the past i was lucky to get a real code for a layout for relative strength ratio of any stock or etf
on my watchlist in my blocks as compared to spx .while changing to stockfinder i have lost the realcode for the layout could you please send it to me again ! thanks it was very helpful
|
Better Volume
Inputs: Color(Cyan), LowColor(Yellow), ClimaxColor(Red), ChurnColor(Green),
ClimaxChurnColor(Magenta), LowChurnColor(White), AvgColor(Red);
Variables: BarColor(Cyan);
BarColor = Color;
Value1 = V;
Value2 = V*Range;
If Range <> 0 then Value3 = V/Range;
Value4 = Average(Value1,100);
If Value1 = Lowest(Value1,20) then BarColor = LowColor;
If Value2 = Highest(Value2,20) then BarColor = ClimaxColor;
If Value3 = Highest(Value3,20) then BarColor = ChurnColor;
If Value2 = Highest(Value2,20) and Value3 = Highest(Value3,20) then BarColor = ClimaxChurnColor;
If Value3 = Lowest(Value3,20) then BarColor = LowChurnColor;
Plot1(Value1,"Volume",BarColor);
Plot2(Value4,"Avg",AvgColor);
could you please convert this to telechart code thank you
|