StockFetcher Forums · Filter Exchange · PPO vs Schaff Trend Cycle<< >>Post Follow-up
graftonian
1,089 posts
msg #155326
Ignore graftonian
1/15/2021 4:02:33 PM

After using the Schaff Trend cycle as one of my "go to" entry signals, I am beginning to have second thoughts. The PPO and its cousin, the MACD) appears to have fewer false signals, but is a bit slower.
Your Thoughts, and a great weekend to all
Duane

Fetcher[
/**** PPO vs Schaff TC vs MACD *****/
optionable
chart time is 1 year
/********* daily PPO ********/
draw ppo(10,24)
set{DailyPPOsignal, cema(ppo(10,24), 8)}
draw DailyPPOsignal on plot ppo(10, 24)
/*********MACD**************/
draw MACD Slow Line(10,24,9)
/*schaff trend cycle*/
set{range, MACD (23,50,9) 10 day high - MACD (23,50,9) 10 day low}
set{var2, MACD (23,50,9) - MACD (23,50,9) 10 day low}
set{var3, var2 / range}
set{var6, cema(var3, 3) 10 day high}
set{var5, cema(var3, 3) 10 day low}
set{var7, cema(var3, 3) - var5}
set{var8, var6 - var5}
set{var9, var7 / var8}
set{var10, cema(var9, 3)}
set{STC, 100 * var10}
add column separator
draw STC and draw stc line at 25 and draw STC line at 75
]



Cheese
1,374 posts
msg #155336
Ignore Cheese
1/16/2021 10:52:24 PM

graf (Duane)

About PPO
Before Joanne Klein started a paid subscription service, she raved about using PPO for AAPL.
That chart is no longer among her free public list.

About STC
Doug Schaff succintly described STC as the stochastic of MACD.

Many websites on STC focus on the MACD of STC, and come with final thoughts like
STC is a leading indicator so use additional indicators for confirmation

A few websites on STC focus on the stochastic of STC.
snappyfrog's %K(40,40,4) signals using the 20 & 80 thresholds might be comparable to
STC 25 & 75.

There is also a suggestion that there Sine Wave influence in STC.
You and John (Mac) have had a discussion about IFT as workaround for Sine Wave,
and you espoused the idea of Pregnant IFT.

I believe some Pregnant IFT and some stochastics have shapes and signals similar to STC.
It may be interesting to use leading STC with MACD, stochastic and IFT for confirmation.

Happy trading, and thanks for all your creative ideas and filters over the years.



sat_stocks
24 posts
msg #155341
Ignore sat_stocks
1/17/2021 1:13:05 PM

Hi,

could you please let us know ENTRY and EXIT points when to enter and exit basis on which indicator OR please add Colum for BUY and SELL signal if posible.

Thanks
sat

graftonian
1,089 posts
msg #155342
Ignore graftonian
1/17/2021 2:53:36 PM

@Sat,
I use STC crossing above 25 as an entry signal only, The STC can stay at high levels for a long time and is too slow for an exit. I use the highest of PSAR or Daryl Guppy's 3 day count-back as a trailing stop; as a trend matures and begins to level off they are, more often than not very close to one another.
Duane

nibor100
1,010 posts
msg #155350
Ignore nibor100
1/18/2021 9:13:38 AM

@Graf,

Could you post a few of the trades indicated by your version of the STC that you didn't like and their dates?

I'm curious and would like to study them further.

Thanks,
Ed S.

graftonian
1,089 posts
msg #155357
Ignore graftonian
modified
1/18/2021 11:17:15 PM

@Ed S.
The most frequent reason a trade was not taken was a down opening, or a gap up that didn't fill in.
Often bad news, even in the sector, tipped the scales. I also (being an aesthetic) pay attention to candle patterns(the easy ones). A Doji and weak volume will kill a trade.
My current Hull/STC/Volume filter has been added to over the months; PSAR and Vortex (thanx to a discussion here.). I'll post the latest version at the end.
A few weeks ago I got burned, playing w/ UPRO, TQQQ,GLD. Somehow that led me back to the "Charting Wealth" blog. My last few trades have been a combination of CW philosophy applied to the market and Hull/STC. If it can pass both tests, how can it lose? The answer is "easily"
FYI, I am ready to pounce on TBLT, PPSI, and maybe another shot at AMRS.
On another subject, I believe the Excel skills required for Edgerater are beyond my paygrade. I requested some extra time, and Chris graciously extended another 2 weeks to me; I'm still working at it..
Graf

Fetcher[

/*Hull Moving average cross/ Schaff Trend Cycle/ Volume increase, PSAR, vortex*/
Show stocks where trigger = 4
/*****************************Basic Criteria*********************/
chart-time is 42 days
not OTCBB
average volume(10) greater than 1234567
close between .50 and 50
close greater than close 1 day ago
/*****************************HULL50MA***********************/
set{slow1, cwma(close, 25)}
set{slow2, 2 * slow1}
set{slow3, cwma(close, 50)}
set{valslow, slow2 - slow3}
set{H50, cwma(valslow, 7)}
draw H50 on plot price
/******************************HULL10MA**********************/
set{slow1A, cwma(close, 5)}
set{slow2A, 2 * slow1A}
set{slow3A, cwma(close, 10)}
set{valslowA, slow2A - slow3A}
set{H10, cwma(valslowA, 3)}
DRAW H10 ON PLOT PRICE
/*****************************HULL100MA***********************/
set{slow1B, cwma(close, 50)}
set{slow2B, 2 * slow1B}
set{slow3B, cwma(close, 100)}
set{valslowB, slow2B - slow3B}
set{H100, cwma(valslowB, 10)}
draw H100 on plot price
/*********************SCHAFF TREND CYCLE**********************/
set{range, MACD (23,50,9) 10 day high - MACD (23,50,9) 10 day low}
set{var2, MACD (23,50,9) - MACD (23,50,9) 10 day low}
set{var3, var2 / range}
set{var6, cema(var3, 3) 10 day high}
set{var5, cema(var3, 3) 10 day low}
set{var7, cema(var3, 3) - var5}
set{var8, var6 - var5}
set{var9, var7 / var8}
set{var10, cema(var9, 3)}
set{STC, 100 * var10}
draw STC
draw STC line at 25
draw STC line at 75
/******************Volume % above 21 day average**************/
set{VolX, volume / CWMA(volume, 21)}
draw CWMA(volume, 21)
draw VolX
draw VolX line at 1
/**********HullCrossOver-the first time****************/
set{HullCrossOver, count(H10 crossed above H50, 1)}
draw HullCrossOver
/*********HullMA cross count***********************************/
set{HullCrossCount, count(H10 > H50, 1)}
draw HullCrossCount
/***************STC crossed 25 count***************************/
set{STCcrosscount, count(STC > 25, 1)}
draw STCcrosscount
/****************************Volume % count********************/
set{VolCount, count(VolX 1 day ago > 1.05, 1)}
draw VolCount
/************Sum the count calculations (trigger)**************/
set{trig1, HullCrossOver + HullCrossCount}
set{trig2, trig1 + STCcrosscount}
set{trigger, trig2 + VolCount}
draw trigger
trigger > 3
/******Display results********/
sort on column 7 descending
add column separator
add column VolX
/****************21 DAY RATE OF RETURN********************************
set{21ROR1, close 1 day ago - close 22 days ago}
set{21ROR2, 21ROR1 / close 22 days ago}
set{21ROR, 21ROR2 * 100}
draw 21ROR and add column 21ROR{21ROR%}
draw 21ROR line at 0*/
/************* 9 period Vortex Trend Indicator ***********/
set{plus_vm, abs(high minus low 1 day ago)}
set{minus_vm, abs(low minus high 1 day ago)}
set{plus_vm9, sum(plus_vm, 9)}
set{minus_vm9, sum(minus_vm, 9)}
set{atr1, average true range(1)}
set{tr9, sum(atr1, 9)}
set{vortex_bull, plus_vm9 / tr9}
set{vortex_bear, minus_vm9 / tr9}
draw vortex_bull
draw vortex_bear on plot vortex_bull
/****************PSAR***********/
draw Parabolic SAR(0.02,0.2)
set{AbvPSAR, count(close > Parabolic SAR(0.02,0.2), 1)}
add column AbvPSAR
]











sat_stocks
24 posts
msg #155367
Ignore sat_stocks
1/19/2021 7:43:55 PM

HI,

If AbvPSAR is "1" , indicator for BUY signal?

Thanks
sat

graftonian
1,089 posts
msg #155369
Ignore graftonian
1/19/2021 9:17:46 PM

@Sat,
Not quite, the crossover of PSAR adds to the buy side of the equation.
Graf

StockFetcher Forums · Filter Exchange · PPO vs Schaff Trend Cycle<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.