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" ) ;
|
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
|
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
|
I am unable to plot any Morningstar fundimentals? Why not?
|
i also have this same problem of "minute data " and "streaming data" NOT connecting
|
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?
|
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)
|
I am not sure about this formula - after inserting the code in a rule, it does not work.
|
I am using STOCKGUYS posting in chatrts dated 5/1/2008 and want to base a your code on that indicator
|