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: hotrod
About
User Name: hotrod
Groups: Beta Testers, Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Thursday, October 7, 2004
Last Visit: Monday, June 20, 2016 11:27:39 AM
Number of Posts: 67
[0.02% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: help with writing an indicator
Posted: Friday, June 17, 2016 10:21:09 PM

july 2016 - Super Passband Filter      Stocks and commodities mag.

can you write this indicator as an PCF please for TC2000

 

//Super Passband Filter
// (c) 2016 John F. Ehlers
// TASC JUL 2016
inputs:
Period1( 40 ),
Period2( 60 ) ;
variables:
a1( 0 ),
a2( 0 ),
PB( 0 ),
count( 0 ),
RMS( 0 ) ;
 
a1 = 5 / Period1 ;
a2 = 5 / Period2 ;
 
PB = (a1 - a2) * Close + (a2*(1 - a1) - a1 * (1 - a2))
* Close[1] + ((1 - a1) + (1 - a2))*PB[1] - (1 - a1)
* (1 - a2)*PB[2] ;
 
RMS = 0;
for count = 0 to 49 
begin
RMS = RMS + PB[count]*PB[count] ;
end ;
 
RMS = SquareRoot( RMS / 50 ) ;
 
Plot1( PB, "Super PB" ) ;
Plot2( 0, "Zero Line" ) ;
Plot3( RMS, "+RMB" ) ;
Plot7(-RMS, "-RMS" ) ;
 
Topic: Leading Span A
Posted: Tuesday, June 19, 2012 11:20:21 AM

please write this indicator (a part of the ichimoku cloud) in a PCF format shifted 26 bars forward

and the "Lagging Span”: Price Close shifted back 26 bars

thanks

 

Topic: TC2000 v 11 Question
Posted: Tuesday, October 18, 2011 7:39:08 PM
traderlady

can i get the link for verson 11. I was using v11 and then myPC crashed loosing everything. Now i am stick with v12

thanks
email removed by moderator
Topic: morningstar
Posted: Thursday, March 4, 2010 9:24:16 AM
I am unable to plot any Morningstar fundimentals? Why not?
Topic: Build 163 Now Available
Posted: Thursday, January 14, 2010 9:18:20 AM
so far - SO GOOD!! thx
Topic: SF5 minute connection failure
Posted: Saturday, January 9, 2010 2:36:27 PM
i also have this same problem of "minute data " and "streaming data" NOT connecting
Topic: a PIVOT question
Posted: Wednesday, December 3, 2008 4:11:05 PM

I hate to contradict you – but u certainly r a programmer. Where is there documentation on realcode for Stockfinder? The code here seems to be nothing like the old Blocks 3.0

In Blocks we could drag indicators into real code to create a new indicator or condition. Can we still do this?

Topic: a PIVOT question
Posted: Wednesday, December 3, 2008 1:54:06 PM

on second look - the code does work.  Your formula is different then the one I submitted.

 

What i was really looking for was a Rule ,  where I could interchange “r4” or  “s2”  greater than or less than the price..last then  pass.

 

 

R4 = R3 + RANGE (same as: PP + RANGE * 3)

                        R3 = R2 + RANGE (same as: PP + RANGE * 2)

                        R2 = PP + RANGE

                        R1 = (2 * PP) - LOW

                        PP = (HIGH + LOW + CLOSE) / 3

                        S1 = (2 * PP) - HIGH

                        S2 = PP - RANGE

                        S3 = S2 - RANGE (same as: PP - RANGE * 2)

                        S4 = S3 - RANGE (same as: PP - RANGE * 3)

 

 

Topic: a PIVOT question
Posted: Wednesday, December 3, 2008 1:08:44 PM
I am not sure about this formula - after inserting the code in a rule, it does not work.
Topic: a PIVOT question
Posted: Wednesday, December 3, 2008 10:42:19 AM
I am using STOCKGUYS posting in chatrts dated 5/1/2008 and want to base a your code on that indicator