logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
siligard  
#1 Posted : Monday, October 23, 2006 12:41:31 PM(UTC)
siligard

Rank: Newbie

Groups: Registered, Registered Users
Joined: 2/7/2006(UTC)
Posts: 8
Location: Greece

With respect to the algorithm I presented in my article for the
Technical Analysis of Stocks & Commodities magazine
(November 2006 issue): "Building Automatic Trendlines":

You can go to my commercial website:

http://www.daedalussoft.com


click the "Free Section" link and download the "GSautoTL.zip" file.
The file contains an add-on for automatic construction of trendlines in Metastock
(version 9 and above) along with a help tutorial (can be viewed with Internet Explorer).

The add-on is freeware.

Regards,
Giorgos E. Siligardos
mwaseemtaqi  
#2 Posted : Monday, October 23, 2006 10:40:18 PM(UTC)
mwaseemtaqi

Rank: Member

Groups: Registered, Registered Users
Joined: 10/12/2006(UTC)
Posts: 19

Hi Giorgos,

This web site is down.

Regards

WT

Jose  
#3 Posted : Tuesday, October 24, 2006 3:46:53 PM(UTC)
Jose

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 1/19/2005(UTC)
Posts: 1,065
Location: Koh Pha-Ngan, Earth

Was thanked: 2 time(s) in 2 post(s)
Giorgos, just looking at the SI/GS indicators and custom DLL function. They seem very similar to the ZigZag function in that they definitely use hindsight to find peaks and troughs, so this tool is of very limited value for either backtesting or generating valid trading signals. jose '-)
siligard  
#4 Posted : Wednesday, October 25, 2006 3:28:51 AM(UTC)
siligard

Rank: Newbie

Groups: Registered, Registered Users
Joined: 2/7/2006(UTC)
Posts: 8
Location: Greece

YES. The SI indicator is a variation of the ZigZag function but not identical (as mentioned in my article) and YES, this tool is of limited value for either backtesting or generating valid trading signals but that is not its purpose.

The aim of my article (upon which this add-on is based) is to make pubicly available a step-by-step algorithm for automatic construction of trendlines (there are some commercial software that do just that, but now an algorithm is available for free) not the presentation of a trading system. The add-on simply implements this algorithm in Metastock and serves as a quick guide for trendline indentification (again, it is not a trading system or something similar). It is not of no value however due to a couple of reasons. First, novices will find an easy way to identify active proper trendlines (the terms "active trendline" and "proper trendline" are defined in my article) and second, an exploration can be constructed (using the functions of the add-on) which can show at a glance which securities broke a trendline, or are very close to a trendline.

I must mention that my algorithm is the first block of a somehow complex technique for identification of short, medium and long term trends based completely upon automatic trendlines. I have not decided yet if I will publish an article about this technique however.

Regards,

Giorgos E. Siligardos
http://www.daedalussoft.com


PTJim  
#5 Posted : Friday, October 27, 2006 11:57:46 PM(UTC)
PTJim

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/10/2006(UTC)
Posts: 252

Thanks: 11 times
Was thanked: 9 time(s) in 6 post(s)
Thanks for developing and sharing those plugins, Giorgos, and for making the effort to do the animated introductory walkthroughs as well.

alagalah  
#6 Posted : Saturday, September 20, 2008 3:04:22 PM(UTC)
alagalah

Rank: Member

Groups: Registered, Registered Users
Joined: 4/19/2008(UTC)
Posts: 16
Location: Here and there...

I tried this and the SI would plot but the TL would not... any thoughts?
alagalah  
#7 Posted : Tuesday, October 21, 2008 11:29:41 PM(UTC)
alagalah

Rank: Member

Groups: Registered, Registered Users
Joined: 4/19/2008(UTC)
Posts: 16
Location: Here and there...

Guess not ;)
minnamor  
#8 Posted : Tuesday, October 21, 2008 11:50:00 PM(UTC)
minnamor

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/27/2005(UTC)
Posts: 126
Location: Italy

Those with PowerPivots might try this:

PPivot:=Input("P 1=minor 2=intermediate 3=major 4=primary",1,4,2);
TPivot:=Input("T -1=minor -2=intermediate -3=major -4=primary",-4,-
1,-2);
Mlt:=Input("ATR multiplier",0,10,0);
FTrough := LastValue( ExtFml("Powerpivots.NthPivotPrice",Tpivot,0,1));
STrough := LastValue( ExtFml("Powerpivots.NthPivotPrice",Tpivot,1,1));
DeltaVerticalU := FTrough - STrough;
DeltaHorizontalU :=
LastValue(ExtFml("Powerpivots.BarsSinceNthPivot",Tpivot,1)) -
LastValue(ExtFml("Powerpivots.BarsSinceNthPivot",Tpivot,0));
DeltaPerBarU := DeltaVerticalU / DeltaHorizontalU;
BarNoSecondTrough := LastValue(
Cum(1) - ExtFml("Powerpivots.BarsSinceNthPivot",Tpivot,1));
TrendD := If(Cum(1) < BarNoSecondTrough,
BarsSince(Cum(1) >= BarNoSecondTrough),
STrough +
(DeltaPerBarU * (Cum(1) - BarNoSecondTrough)));
Up:=If(FTrough >= STrough,
TrendD,
BarsSince(FTrough >= STrough));
FPeak := LastValue( ExtFml("Powerpivots.NthPivotPrice",Ppivot,0,1));
SPeak := LastValue( ExtFml("Powerpivots.NthPivotPrice",Ppivot,1,1));
DeltaVerticalD := FPeak - SPeak;
DeltaHorizontalD :=
LastValue(ExtFml("Powerpivots.BarsSinceNthPivot",Ppivot,1)) -
LastValue(ExtFml("Powerpivots.BarsSinceNthPivot",Ppivot,0));
DeltaPerBarD := DeltaVerticalD / DeltaHorizontalD;
BarNoSecondPeak := LastValue(
Cum(1) - ExtFml("Powerpivots.BarsSinceNthPivot",Ppivot,1));
TrendU := If(Cum(1) < BarNoSecondPeak,
BarsSince(Cum(1) >= BarNoSecondPeak),
SPeak +
(DeltaPerBarD * (Cum(1) - BarNoSecondPeak)));
Dn:=If(FPeak <= SPeak,
TrendU,
BarsSince(FPeak <= SPeak));
X:=If(PPivot=1,ATR(5),If(PPivot=2,ATR(20),ATR(40)));
Up+mlt*x;Up-Mlt*x;Dn+mlt*x;Dn-Mlt*x;Up;Dn

do not remember where I got this from. I added an allowance for atr margins above and below the trend lines.

behealed  
#9 Posted : Wednesday, July 22, 2009 7:57:13 PM(UTC)
behealed

Rank: Newbie

Groups: Registered, Registered Users
Joined: 7/23/2009(UTC)
Posts: 1

Great program for automatic trendlines at: http://www.dualj.com/trendlines.aspx
Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.