mystiq 650 posts msg #71048 - Ignore mystiq |
1/29/2009 5:00:53 AM
Name, Sometimes Called:
Pivot Point Reverse Trading System
Abbreviated to PPRTS
Brief Description:
The PPRTS is a simple way to determine minor changes in trend direction. However, it can only provide results a day after an event has occurred.
Definitions, Formulas:
If you can wait a day in order to use the Pivot Point Reverse Trading System (PPRTS), it can indicate minor trend changes in direction. The calculation applies to yesterday’s values, even though you’re calculating the PPRTS today.
A top pivot point (TPP) is defined when the yesterday’s high is higher than the highs both today and the day before yesterday. That is,
TPP = HighTODAY-1 > HighTODAY-1 and HighTODAY-1 > HighTODAY
Similarly, a bottom pivot point (BPP) is defined when yesterday’s low is lower than both today’s low and the low for the day before yesterday. That is,
BPP = LowTODAY-1 < LowTODAY-2 and LowTODAY-1 < LowTODAY
Since determining yesterday’s pivot points requires today’s prices, there will always be a one-day delay in using this TAI.
Positive Development Calculation:
For this TAI, a new positive development (NPD) occurs when ALL of the following conditions are met:
There was a bottom pivot point yesterday
and LowTODAY > LowTODAY-1
and LowTODAY-1 < LowTODAY-2
and CloseTODAY > CloseTODAY-1
This TAI can be confusing to understand in the abstract, so here is an example for HYPO, the Hypothetical Corporation. Highs are omitted in the interest of simplicity.
Day Low Close Notes
Tuesday 7.1 7.2
Wednesday (today-2) 7.0 7.6
Thursday (today-1) 5.5 6.5 was BPP
Friday (today) 6.0 8.0 is Positive Development
On Friday, we discovered that Thursday was a bottom pivot point because yesterday’s low (5.5) was lower than that on the day before (7.0) and yesterday’s low (5.5) was less than today’s low (6.0).
So, is Friday a positive development? Let us review the four points required:
Was there a bottom pivot point yesterday? YES
Was the low today higher than yesterday’s close? YES (6.0 > 5.5)
Was the low yesterday lower than the low of the day before? YES (5.5 < 7.0)
Was the close today higher than the close yesterday? YES (8.0 > 6.5)
All four conditions being met make Friday a positive development.
This TAI is no longer positive when ANY of the four conditions for a positive development no longer exist.
So let’s move forward one day and extend our example data to Monday.
Day Low Close Notes
Tuesday 7.1 7.2
Wednesday 7.0 7.6
Thursday (today-2) 5.5 6.5 was BPP
Friday (today-1) 6.0 8.0
Monday (today) 7.4 7.9 No longer a Positive Development
On Monday, the closing price fell, so the fourth condition is not met:
Was the close today higher than the close yesterday? NO (7.9 not > 8.0)
Yesterday’s low (6.0) is lower than today’s low (7.4), but not lower than the low for the day before yesterday (5.5). So as of Monday, Friday was not a bottom pivot point.
If this TAI is still positive tomorrow, it will no longer be new, but will be a cumulative positive development (CPD).
If this TAI was a new positive development (NPD) yesterday, and is still positive today, then it becomes a cumulative positive development (CPD) .
History:
Looking for price trends is perhaps the simplest exercise in a trader’s attempts to profit in the market. This exercise often leads to looking for significant turning points, or pivot points, where the direction of a price trend appears likely to change. In fact, a pivot point is defined as that price at which the direction of price movement changes. By examining a security’s high, low, and closing prices, one can determine potential pivot points. The trick is to distinguish potential pivot points from actual ones. The TAI presented here can help in that effort.
There are at least three different ways to calculate pivot points. Most if not all articles discussing pivot points strongly urge their use in combination with other indicators.
====================================================> any coding help? looks interesting:
|
Eman93 4,750 posts msg #71061 - Ignore Eman93 modified |
1/29/2009 10:56:56 PM
Have you tried Fibonacci Zone Pivots.
Just change the symlist to the stock you want.
Draw the lines on your charts the night before and use for interday support and resistance.
You can use the date offset to see how the zones would have played out today.
Some stocks seem to realy trade well with this system, while others don't.
Look at RDN it held SP1 from the open then shot to RS1
/*Fib Zone Pivots*/
set{HL, High + Low}
set{HLC, HL + Close}
set{piv, HLC / 3}
set{DR, High - Low}
set{DR5, 0.5 * DR}
set{rs1, PP + DR5}
set{rs2, PP + DR}
set{sp1, PP-DR5}
set{sp2, PP - DR}
set{DR618, 0.618 * DR}
set{RB1, PP + DR618}
set{SB1, PP - DR618}
set{DR138, 1.382 * DR}
set{RB2, PP + DR138}
set{SB2, PP - DR138}
add column piv
add column sp1
add column rs1
add column sp2
add column rs2
add column SB1
add column RB1
add column SB2
add column RB2
/* SELECTION CRITERIA */
symlist(cal,bzh,amr,anr,dal,uaul,mth,rtk,lcc,rdn,sca,mtg,abk,qtw,mon,sial.ilmn,mos,cf,flir,crk,rimm,qid,sds,dal,srs,abx)
sort column 1 desending
|
mystiq 650 posts msg #71075 - Ignore mystiq |
1/30/2009 3:04:09 AM
Eman93---->looks good, but with my style of trading i like to use ONE stat column: zi EQUALS 5 is a NPD (-.-)
set{za, count(low 1 day ago < low 2 days ago,1)}
set{zb, count(low 1 day ago < low,1)}
set{zc, count(low > low 1 day ago,1)}
set{zd, count(low 1 day ago < low 2 days ago,1)}
set{ze, count(close > close 1 day ago,1)}
set{zf, za + zb}
set{zg, zf + zc}
set{zh, zg + zd}
set{zi, zh + ze}
add column zi
|
chetron 2,817 posts msg #71076 - Ignore chetron modified |
1/30/2009 6:34:37 AM
CLICKABLE....
AND OF COURSE...
|
mystiq 650 posts msg #71102 - Ignore mystiq |
1/31/2009 4:00:54 AM
----->CHETRON thanks for the CLICKABLE...!
|