john_f_damone |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Gender: |
|
Tuesday, May 15, 2012 |
Friday, June 23, 2017 1:23:21 PM |
7 [0.00% of all post / 0.00 posts per day] |
|
Thanks Bruce, I'll get working on it.
John
|
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
|
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'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
|
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's been working quite well.
Here'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't giving me enough plots.
I must say the formula you're presenting here seems to be much cleaner and more accurate.
Thanks for your awesome work, we all appreciate it here.
John
|
Good Afternoon,
I have the code to program a custom indicator into TC2000, unfortunately the code is from TradeStation. I'm not sure if this is something worth persuing, but if the logic can be translated, that would be great
What I'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'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
|
Hello Fellow Traders,
I guess what I'm asking is how to convert a TradeStation custom indicator into something TC2000 understands. From what I've been researching from previous posts, the task could be difficult.
Is this something worth persuing?
Thanks
|
Good Morning,
I have the code to program a custom indicator into TC2000.
What I'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'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
|
|