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

Notification

Icon
Error

Options
Go to last post Go to first unread
StorkBite  
#1 Posted : Thursday, May 4, 2006 2:28:54 AM(UTC)
StorkBite

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/19/2005(UTC)
Posts: 2,995

Was thanked: 14 time(s) in 10 post(s)
Has anyone successfully plotted a Kondratieff wave in MS? Care to share the code? http://www.robertew.com/html/kondratieff.html
kanellop  
#2 Posted : Thursday, May 4, 2006 3:38:32 AM(UTC)
kanellop

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 6/3/2005(UTC)
Posts: 181

Dear George, Hello. I see the very important Topic that you make! I want to note that you do not need so much Metastock Formulas for to create your own Charts, but you need, i think, Fundamental Historical Data in many Things for example Commodities. It is very hard to find that Fundamental Data i think. For Help i want to give you some interesting Links: http://www.research.stlo.../search/MORTGAGE+RATES/1 http://www.research.stlo.../3+MONTH+TREASURY+BILL/1 http://www.bankrate.com/...&web=brm&cc=1&prodtype=M http://www.stock-market-crash.net/southsea.htm http://www.kipnotes.com/Panics.htm http://www.library.hbs.e...ancial_markets_data.html http://www.globalfinancialdata.com/index.php3 http://www.nber.org/data.../contents/chapter04.html http://www.lib.sfu.ca/re...des/geog/commodities.htm Kind Regards, George Kanellopoulos.
StorkBite  
#3 Posted : Thursday, May 4, 2006 5:22:09 AM(UTC)
StorkBite

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/19/2005(UTC)
Posts: 2,995

Was thanked: 14 time(s) in 10 post(s)
Hi George- Thanks for all of the links. Wow, you've been busy! I'm interested in cycle theory, but I'm mostly skeptical. Kondratieff is interesting because it is a fixed cycle which purports to predict future economic health. I don't have much literature regarding the work itself, but there are plenty of narrations on the web about the K-disciples. ** I love it ** <g> This can all be considered a subset of Harmonics theory... see below. I love that even more. <bg> Well, I'm not dismissing this (really)... if I were, I'd have placed this post in the Friday Funnies thread. Here are some related links: http://ray.tomes.biz/story.htm http://www.consensus-inc...ample/spec-rep/spec3.htm
StorkBite  
#4 Posted : Thursday, May 4, 2006 9:07:04 PM(UTC)
StorkBite

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/19/2005(UTC)
Posts: 2,995

Was thanked: 14 time(s) in 10 post(s)
kanellop  
#5 Posted : Thursday, May 4, 2006 9:53:56 PM(UTC)
kanellop

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 6/3/2005(UTC)
Posts: 181

Dear George, I see the Formula that you put into this Topic. Inside the Formula exist the Name of ...Jose! I have Problem in that Formula not so much to understand the Metastock Formula Code, but to understand how will work with the Stocks and the Indices or Futures maybe. So, i want to please you to say to Jose to say some Words about this Formula, i mean how work, what show etc. Kind Regards, George Kanellopoulos.
Jose  
#6 Posted : Friday, May 5, 2006 4:19:10 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)
Ok, a few words about the Harmonic Pattern Correlator: Built for tongue-in-cheek fun, it is for those of us looking for patterns where there are none - i.e., don't waste too much time on it. jose '-)
StorkBite  
#7 Posted : Friday, May 5, 2006 4:58:51 PM(UTC)
StorkBite

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/19/2005(UTC)
Posts: 2,995

Was thanked: 14 time(s) in 10 post(s)
j.k., J! You're the man! I said "hunting..." I like playing around with this stuff, but at the end of the day I can't say it's fruitful. There are too many things that I don't know. The code below is my first attempt at working with cycles. It's pretty useless without a date correlation (which I can't fathom yet). In the mean time, I moved on to developing a ZigZag indicator based on the Periodicity Marker code and that looks more promising. [code:1:4155cac992]{ Adjustable Cycle Indicator } plot:= Input("Plot: (Wave=1, Pk/Tr=2, Both=3)",1,3,3); freq:= Input("Frequency",0.01,500,5); amp:= Input("Amplitude",1,10,1); offset:= -Input("Offset",-10,10,0); pds:= Input("Restrict signals to last x periods [0=show all]",0,2520,0); { output restriction } pds:= LastValue(If(pds=0,LastValue(Cum(1))-1,pds)); restrict:= BarsSince(Cum(1)=LastValue(Cum(1))-pds)>-1; { cycle indicator } cycle:=Sin(Cum(freq))*restrict*amp; cycle:=Ref(cycle,offset); { peak and trough indicator } pk:=cycle=LastValue(Highest(cycle))*amp; tr:=cycle=LastValue(Lowest(cycle))*amp; { plot } If(plot=1,cycle,If(plot=2,pk,pk)); If(plot=1,0,If(plot=2,-tr,-tr)); If(plot=3,cycle,0)[/code:1:4155cac992]
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.