Welcome to the Traders Laboratory Forums.
The Wyckoff Forum Welcome to the Wyckoff trading forum moderated by DbPhoenix and gassah.

Like Tree13Likes

Reply
Old 12-17-2008, 03:31 PM   #17

Join Date: Dec 2008
Location: Downingtown, PA
Posts: 5
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts



Re: Point and Figure Charting

DbPhoenix,

Thanks, I did not look at the Daytrader's Bible but will peruse it. I have looked at the charts posted but I noted the regular line and candle charts with volume indicators are also on those charts.

I think my hangup is many PnF'ers are pure price action advocates. See support and resistance from price action only and trade accordingly. I am having a difficult time in my mind rationalizing that camp with the Wycoff camp.

Thanks for the insight...
jeffh0821 is offline  
Reply With Quote
Old 12-17-2008, 05:41 PM   #18

DbPhoenix's Avatar

Join Date: Feb 2008
Location: USA
Posts: 1,797
Ignore this user

Thanks: 329
Thanked 3,475 Times in 830 Posts
Blog Entries: 31



Re: Point and Figure Charting

Quote:
Originally Posted by jeffh0821 »
I think my hangup is many PnF'ers are pure price action advocates. See support and resistance from price action only and trade accordingly. I am having a difficult time in my mind rationalizing that camp with the Wycoff camp.

Daily Vertical Charts are made to record the daily movements and volume of the averages, or groups or individual stocks. By the use of these charts, we are better able to discern accumulation, distribution and other phases of manipulative (controlled) or uncontrolled moves in the market. By condensing them into weekly and monthly vertical charts we are able to visualize the long time trend and to keep our perspective of the long range moves. However, the daily chart is most generally used because of its greater sensitivity and immediate historical value. In other words, weekly and monthly vertical charts aid us to judge the markets present position in relation to the general trend, that is, the major bull and bear cycles; but daily charts are more effective for timing commitments advantageously and for recognizing turning points.

Figure Charts are equally valuable, but it is best to use these in combination with vertical charts, so that all obtainable deductions may be made therefrom. Figure charts take no account of fractions, nor do they take account of time or volume. They represent the movement of a stock from one full figure to the next full figure above or below, such as from 35 to 36 or 34. They are of great value in estimating the probable extent of supply and demand and the points of resistance and support.

RDW
__________________

Becoming A Successful Trader
DbPhoenix is offline  
Reply With Quote
Old 03-24-2009, 09:33 AM   #19

Join Date: Jan 2009
Location: Rostov
Posts: 3
Ignore this user

Thanks: 1
Thanked 1 Time in 1 Post



Re: Point and Figure Charting

does anybody have indicator P&F for TradeStation?
fxshark is offline  
Reply With Quote
Old 03-24-2009, 10:05 AM   #20

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,589
Ignore this user

Thanks: 2,027
Thanked 1,402 Times in 862 Posts



Re: Point and Figure Charting

Quote:
Originally Posted by fxshark »
does anybody have indicator P&F for TradeStation?
someone sent me this code.
I have never tried it tho.



Code:
// PnF EasyLanguage code
// This will simulate "Point & Figure" levels on a bar chart
{Written by Adam Hefner version 01-07-02}

Var: dbh(0), dbl(0), {Daily block high/low}
abh(0), abl(0), {actual block high/low}
dir(0), {direction}
sv(0); {stop value}

inputs: 
 BlockSize(1) , {Block Size}
 ReverseSize( 3), {Reverse Size}
 lookBack(-1) ; {look back period}

Var: 
 bs(BlockSize) ,
 rs(ReverseSize) ,
 lb(LookBack) ;

 {daily block high/low calculations}
If Round(high/bs, 0)*bs > High
 then dbh = (Round(high/ bs,0)*bs) -bs
 else dbh = Round(high/bs, 0)*bs;

If Round(Low/bs, 0)*bs < Low
then dbl = (Round(Low/bs, 0)*bs)+bs
else dbl = Round(Low/bs, 0)*bs;

If currentbar <= 1 {check for first 2 bars of the chart}
then 
begin
	dir = 1;
	abh = dbh;
	abl = dbl;
end
else 
begin
If dir[1] = 1 {direction up calculations}
then 
begin
	if dbh > abh[1]
	then
	abh = dbh {new high}
	else 
	begin
	If dbl <= abh-(bs*rs) {reverse}
	then 
	begin
		dir = -1;
		abh = abh[1];
		abl = dbl;
	end
	else
		abh = abh[1];
	end;
end
else 
begin {direction down calculations}
If dbl < abl[1]
then
	abl = dbl {new low}
else
	if dbh >= abl+(bs*rs) {reverse}
	then 
	begin
		dir = 1;
		abl = abl[1];
		abh = dbh;
	end
	else
		abl = abl[1];
	end;
end;
		
If dir = 1 {reversal stop}
then sv = abh-(bs*rs)
else sv = abl+(bs*rs);
	
plot1(abh);
plot2(abl);
plot3[lb](sv) ;
Tams is online now  
Reply With Quote
The Following User Says Thank You to Tams For This Useful Post:
fxshark (03-24-2009)
Old 03-24-2009, 01:16 PM   #21

Join Date: Jan 2009
Location: Rostov
Posts: 3
Ignore this user

Thanks: 1
Thanked 1 Time in 1 Post



Re: Point and Figure Charting

Quote:
Originally Posted by Tams »
someone sent me this code.
I have never tried it tho.



Code:
// PnF EasyLanguage code
// This will simulate "Point & Figure" levels on a bar chart
{Written by Adam Hefner version 01-07-02}

Var: dbh(0), dbl(0), {Daily block high/low}
abh(0), abl(0), {actual block high/low}
dir(0), {direction}
sv(0); {stop value}

inputs: 
 BlockSize(1) , {Block Size}
 ReverseSize( 3), {Reverse Size}
 lookBack(-1) ; {look back period}

Var: 
 bs(BlockSize) ,
 rs(ReverseSize) ,
 lb(LookBack) ;

 {daily block high/low calculations}
If Round(high/bs, 0)*bs > High
 then dbh = (Round(high/ bs,0)*bs) -bs
 else dbh = Round(high/bs, 0)*bs;

If Round(Low/bs, 0)*bs < Low
then dbl = (Round(Low/bs, 0)*bs)+bs
else dbl = Round(Low/bs, 0)*bs;

If currentbar <= 1 {check for first 2 bars of the chart}
then 
begin
	dir = 1;
	abh = dbh;
	abl = dbl;
end
else 
begin
If dir[1] = 1 {direction up calculations}
then 
begin
	if dbh > abh[1]
	then
	abh = dbh {new high}
	else 
	begin
	If dbl <= abh-(bs*rs) {reverse}
	then 
	begin
		dir = -1;
		abh = abh[1];
		abl = dbl;
	end
	else
		abh = abh[1];
	end;
end
else 
begin {direction down calculations}
If dbl < abl[1]
then
	abl = dbl {new low}
else
	if dbh >= abl+(bs*rs) {reverse}
	then 
	begin
		dir = 1;
		abl = abl[1];
		abh = dbh;
	end
	else
		abl = abl[1];
	end;
end;
		
If dir = 1 {reversal stop}
then sv = abh-(bs*rs)
else sv = abl+(bs*rs);
	
plot1(abh);
plot2(abl);
plot3[lb](sv) ;
Thanks I will try to make indicator ! )
fxshark is offline  
Reply With Quote
Old 03-25-2009, 10:29 AM   #22

Join Date: Feb 2008
Posts: 23
Ignore this user

Thanks: 0
Thanked 7 Times in 3 Posts



Re: Point and Figure Charting

nice to see some P&F traders around, what software is everyone using?

I have developed quite a few of my own trading methods for day trading with P&F
subq is offline  
Reply With Quote
Old 03-25-2009, 05:10 PM   #23

DbPhoenix's Avatar

Join Date: Feb 2008
Location: USA
Posts: 1,797
Ignore this user

Thanks: 329
Thanked 3,475 Times in 830 Posts
Blog Entries: 31



Re: Point and Figure Charting

While I welcome the participation, you guys do realize that you're in the Wyckoff Forum, right?
__________________

Becoming A Successful Trader
DbPhoenix is offline  
Reply With Quote
Old 03-26-2009, 06:20 AM   #24

Join Date: Jan 2009
Location: Rostov
Posts: 3
Ignore this user

Thanks: 1
Thanked 1 Time in 1 Post



Re: Point and Figure Charting

Quote:
Originally Posted by subq »
nice to see some P&F traders around, what software is everyone using?

I have developed quite a few of my own trading methods for day trading with P&F
Hi, can you post your methods here? A try to find P&F for TS....but I cant to find it..........Which software u use?
fxshark is offline  
Reply With Quote
The Following User Says Thank You to fxshark For This Useful Post:

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Point and Figure Charting : Volume On X's Or O's ! omrangassan Coding Forum 15 10-11-2009 01:42 PM
Tipping Point rjkauffman Trading Psychology 7 09-14-2008 12:13 PM
Does anyone use point and figure charting? Reaver Technical Analysis 11 08-01-2007 01:40 PM
DEC 14 EUR/USD 5 minute CHARTING GalvestonForex Forex Trading Laboratory 1 12-15-2006 02:31 AM
What Is Your Reference Point? Soultrader Technical Analysis 0 12-08-2006 11:32 PM

All times are GMT -4. The time now is 12:50 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.