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: john_f_damone
About
User Name: john_f_damone
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Tuesday, May 15, 2012
Last Visit: Friday, June 23, 2017 1:23:21 PM
Number of Posts: 7
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: TSV scan
Posted: Thursday, September 11, 2014 11:56:24 AM

Thanks Bruce, I'll get working on it.

 

John

 

Topic: TSV scan
Posted: Wednesday, September 10, 2014 8:12:30 PM

Hello,

Is it possible to create a scan to return stocks where the TSV indicator has been oscillating above zero for x number of days? Let's say 30 or 60 days.

Thanks,

John

Topic: Scan for price clearing multiple swing highs
Posted: Friday, March 21, 2014 9:28:22 AM

Hello,

A while back you assisted me in creating swing highs and lows that plot on my charts based on the following criteria;

H3 * ABS(MAXH3 < H3 AND H3 > MAXH3.4)

 
L3 * ABS(MINL3 > L3 AND L3 < MINL3.4)
 
They work great by the way.
 
What I&#39;m trying to do now is create a scan that would pick up stocks when price clears, or closes above the previous 2 swing highs.
 
Your help would be much appreciated.
 
Thanks,
 
John
Topic: Custom historical pivots
Posted: Thursday, August 8, 2013 10:10:52 PM

Hi Bruce,

Thanks for getting back to me on this.

Actually a few days ago I found something very similar from a previous post on plotting swing points, and it&#39;s been working quite well.

Here&#39;s the formula I found for a swing point low for example;

L3 * ABS(L3 <= MINL3.4 AND L3 <= MINL3)

I actually added the = sign because I found the original formula wasn&#39;t giving me enough plots.

I must say the formula you&#39;re presenting here seems to be much cleaner and more accurate.

Thanks for your awesome work, we all appreciate it here.

John

 

Topic: Custom indicator for pivots or swing points
Posted: Thursday, August 1, 2013 7:47:53 PM
Good Afternoon,
 
I have the code to program a custom indicator into TC2000, unfortunately the code is from TradeStation. I&#39;m not sure if this is something worth persuing, but if the logic can be translated, that would be great
 
What I&#39;m trying to do is plot pivots on any chart so I can go back in time and base my base trading decisions on them.
 
It&#39;s very simlilar to plotting swing point highs and lows, and is based on the following logic;
 
PIVOT HIGH
 
inputs: Price( High ), LeftStrength( 3 ), RightStrength( 3 ) ;
 
if PivotHighVSBar( 1, Price, LeftStrength, RightStrength, RightStrength + 1 ) <> -1
then
    begin
    Plot1[RightStrength]( High[RightStrength], "PivotHi" ) ;
    Alert ;
    end
else
    NoPlot( 1 ) ; { remove the marker }
 
 
PIVOT LOW
 
 inputs: Price( Low ), LeftStrength( 3 ), RightStrength( 3 ) ;
 
if PivotLowVSBar( 1, Price, LeftStrength, RightStrength, RightStrength + 1 ) <> -1
then
    begin
    Plot1[RightStrength]( Low[RightStrength], "PivotLo" ) ;
    Alert ;
    end
else
    NoPlot( 1 ) ; { remove the marker }
 
Thank you for taking the time to consider my request. 
John

 

Topic: Custom historical pivots
Posted: Thursday, August 1, 2013 5:45:57 PM

Hello Fellow Traders,

I guess what I&#39;m asking is how to convert a TradeStation custom indicator into something TC2000 understands. From what I&#39;ve been researching from previous posts, the task could be difficult.

Is this something worth persuing?

 

Thanks

Topic: Custom historical pivots
Posted: Thursday, August 1, 2013 8:57:01 AM
Good Morning,
 
I have the code to program a custom indicator into TC2000.
 
What I&#39;m trying to do is plot historical pivots on any chart so I can go back in time and base my base trading decisions on them.
 
It&#39;s kind of like plotting swing point highs and lows, and is based on the following logic;
 
PIVOT HIGH
 
inputs: Price( High ), LeftStrength( 3 ), RightStrength( 3 ) ;
 
if PivotHighVSBar( 1, Price, LeftStrength, RightStrength, RightStrength + 1 ) <> -1
then
    begin
    Plot1[RightStrength]( High[RightStrength], "PivotHi" ) ;
    Alert ;
    end
else
    NoPlot( 1 ) ; { remove the marker }
 
 
PIVOT LOW
 
 inputs: Price( Low ), LeftStrength( 3 ), RightStrength( 3 ) ;
 
if PivotLowVSBar( 1, Price, LeftStrength, RightStrength, RightStrength + 1 ) <> -1
then
    begin
    Plot1[RightStrength]( Low[RightStrength], "PivotLo" ) ;
    Alert ;
    end
else
    NoPlot( 1 ) ; { remove the marker }
 
Thank you for taking the time to consider my request. Hopefully this can be translated into something useful.
 
John