Welcome to the Traders Laboratory Forums.
Technical Analysis The technical discussion forum for traders.

Reply
Old 07-20-2009, 01:14 AM   #65

Join Date: Feb 2009
Location: Fort Lauderdale
Posts: 2
Ignore this user

Thanks: 0
Thanked 1 Time in 1 Post



Cool Re: Drummond Geometry

Check my comments on tech analysis. My partner is Gann's last living student, Joe Rondinone. I am a Gann fan but not using the fan. Gann could and you can tell where the market is going to the penny in advance. He wrote about it. I know one guy that is teaching it but, he is off a little. Just seperate the chart into 8 horizontal lines if you get it right you will have the secret. If I can find an article I wrote years ago Ill post it.
Apig CTA
apig is offline  
Reply With Quote
The Following User Says Thank You to apig For This Useful Post:
pathfinder62 (08-05-2009)
Old 07-21-2009, 06:25 PM   #66

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,272
Ignore this user

Thanks: 129
Thanked 1,038 Times in 694 Posts



Re: Drummond Geometry

Quote:
Originally Posted by atto »
Drummond Geometry aside, if someone loses all of their money following a strategy, it's their fault. Everyone needs to find what makes sense and resonates with them and their own style, be it Drummond, Market Profile, Wyckoff, candles, technical indicators, etc. Testing/validating, analysis, money management, and actual trade decisions are up to them.
What Atto said. P&L can be made to 'work' but it is far from the easiest thing to grasp.
BlowFish is offline  
Reply With Quote
Old 07-21-2009, 06:29 PM   #67

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,272
Ignore this user

Thanks: 129
Thanked 1,038 Times in 694 Posts



Re: Drummond Geometry

Quote:
Originally Posted by apig »
Check my comments on tech analysis. My partner is Gann's last living student, Joe Rondinone. I am a Gann fan but not using the fan. Gann could and you can tell where the market is going to the penny in advance. He wrote about it. I know one guy that is teaching it but, he is off a little. Just seperate the chart into 8 horizontal lines if you get it right you will have the secret. If I can find an article I wrote years ago Ill post it.
Apig CTA
Look forward to seeing it as for 'checking your comment on tech analysis' I see none except that a load of your friends lost money trading Drummonds methods. Perhaps you popsted them somwhere else?
BlowFish is offline  
Reply With Quote
Old 09-08-2009, 08:59 PM   #68

Szymon's Avatar

Join Date: Dec 2007
Location: Sydney
Posts: 165
Ignore this user

Thanks: 18
Thanked 102 Times in 35 Posts



Re: Drummond Geometry

Hi All,

Can someone tell me if there is a programmable rectangle tool in Multicharts (Easy Language)? I want to place a square using esay language on my charts.

All help will be much appreciated.

Thanking in advance.

Simon
Szymon is offline  
Reply With Quote
Old 09-08-2009, 09:06 PM   #69

Tams's Avatar

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

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



Re: Drummond Geometry

Quote:
Originally Posted by Szymon »
Hi All,

Can someone tell me if there is a programmable rectangle tool in Multicharts (Easy Language)? I want to place a square using esay language on my charts.

All help will be much appreciated.

Thanking in advance.

Simon


There is no rectangle or triangle or circle in the EasyLanguage arsenal.

You can build triangles and rectangles with TL_NEW.



p.s. there might be some functions out there to speed up the drawings...
I will let you know if I come across one.
__________________


..........This is a terribly difficult question to answer. The only satisfactory answer is: "It depends"...
Tams is offline  
Reply With Quote
The Following User Says Thank You to Tams For This Useful Post:
Szymon (09-08-2009)
Old 09-09-2009, 06:18 AM   #70

Join Date: Dec 2006
Location: new york
Posts: 31
Ignore this user

Thanks: 1
Thanked 13 Times in 8 Posts



Re: Drummond Geometry

This is the function i programmed for one code, maybe it fits your needs.

Code:
inputs: _Color	(NumericSimple),
	_DateStart	(NumericSimple),
	_TimeStart	(NumericSimple),
       _DateEnd	(NumericSimple),
  	_TimeEnd	(NumericSimple),
       _PriceHi	(NumericSimple),
       _PriceLo	(NumericSimple),
       _Size		(NumericSimple),
       _Style		(NumericSimple);
      
Vars:	Top (0), Bottom(0), BarrierLeft(0), BarrierRight(0);

Bottom	= tl_new_s(_DateStart, _TimeStart, _PriceLo,_DateEnd,  _TimeEnd, _PriceLo);
tl_setcolor (Bottom,_Color);
TL_SetSize (Bottom, _Size);
TL_SetStyle(Bottom, _Style);


Top 	= tl_new_s(_DateStart, _TimeStart,  _PriceHi,_DateEnd,  _TimeEnd,_PriceHi);
tl_setcolor (Top ,_Color);
TL_SetSize (Top , _Size);
TL_SetStyle(Top , _Style);

BarrierLeft	= tl_new_s(_DateStart, _TimeStart, _PriceLo, _DateStart, _TimeStart, _PriceHi);
tl_setcolor (BarrierLeft,_Color);
TL_SetSize (BarrierLeft, _Size);
TL_SetStyle(BarrierLeft, _Style);

BarrierRight	= tl_new_s(_DateEnd, _TimeEnd,  _PriceLo, _DateEnd, _TimeEnd, _PriceHi);
tl_setcolor (BarrierRight,_Color);
TL_SetSize (BarrierRight, _Size);
TL_SetStyle(BarrierRight, _Style);

DrawBox2MC=0;
insideday is offline  
Reply With Quote
The Following 2 Users Say Thank You to insideday For This Useful Post:
Szymon (09-09-2009), Tams (09-09-2009)
Old 09-17-2009, 07:47 PM   #71

Szymon's Avatar

Join Date: Dec 2007
Location: Sydney
Posts: 165
Ignore this user

Thanks: 18
Thanked 102 Times in 35 Posts



Re: Drummond Geometry

Hi All,

Does someone have a screenshot of the latest 6EZ9 with the original Drummond near by support and resistance zones on it.

I would like to compare this with my indicator that I built in Multicharts for that purpose.

I have attached a screen shot my nearby indicators are in Pink.

All help will be much appreciated.

Thanks,

Simon
Attached Thumbnails
Drummond Geometry-picture1.png  
Szymon is offline  
Reply With Quote
Old 09-19-2009, 11:10 AM   #72

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,272
Ignore this user

Thanks: 129
Thanked 1,038 Times in 694 Posts



Re: Drummond Geometry

I don't. It's looking good though!
BlowFish is offline  
Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Market Geometry is a lie? traderxman Technical Analysis 28 08-22-2007 03:53 PM

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