Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: lovedale
About
User Name: lovedale
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Friday, February 9, 2007
Last Visit: Sunday, March 6, 2011 4:59:44 PM
Number of Posts: 21
[0.01% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: indicator for increasing spread price in percentage and increasing vol %
Posted: Wednesday, February 9, 2011 11:29:36 PM

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

Topic: BREAKOUT SCAN
Posted: Wednesday, March 31, 2010 7:47:39 PM

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 . 

Topic: percent change in rsi
Posted: Wednesday, January 20, 2010 6:22:46 PM
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   
Topic: conversion
Posted: Tuesday, October 27, 2009 6:32:34 PM

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

Topic: vol%
Posted: Tuesday, October 13, 2009 9:42:52 AM

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 

Topic: vol%
Posted: Saturday, October 10, 2009 2:17:29 PM
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 
Topic: Vol%
Posted: Saturday, October 10, 2009 2:12:24 PM
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
Topic: Vol%
Posted: Saturday, October 10, 2009 2:11:53 PM
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
Topic: relative strenth ratio of stock or etf with spx
Posted: Tuesday, June 30, 2009 7:19:22 PM
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   
Topic: better volume indicator
Posted: Sunday, April 5, 2009 5:31:43 PM
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