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

Notification

Icon
Error

Options
Go to last post Go to first unread
henry1224  
#1 Posted : Monday, April 25, 2005 12:15:12 AM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
Chaos Balance Lines ChaosBlueBL:= {Alligator Blue Balance Line - Jaw} {13 bar smoothed average offset 8 bars} Ref(Wilders(MP(),13),-8); ChaosRedBL:= {Alligator Red Balance Line - Teeth} {8 bar smoothed average offset 5 bars} Ref(Wilders(MP(),8),-5); ChaosGreenBL:= {Alligator Green Balance Line - Lip} {5 bar smoothed average offset 3 bars} Ref(Wilders(MP(),5),-3); ChaosBlueBL; ChaosGreenBL; ChaosRedBL; ChaosBlueBl ChaosGreenBL Difference ChaosBlueBL:= {Alligator Blue Balance Line - Jaw} {13 bar smoothed average offset 8 bars} Ref(Wilders(MP(),13),-8); ChaosGreenBL:= {Alligator Green Balance Line - Lip} {5 bar smoothed average offset 3 bars} Ref(Wilders(MP(),5),-3); A:=ChaosGreenBL-ChaosBlueBL; A; Chaos Balance Lines Strength M1:=MP()- Ref(Wilders(MP(),5),-3); M2:=MP()- Ref(Wilders(MP(),8),-5); M3:=MP()- Ref(Wilders(MP(),13),-8); Mov(Mov(Mov(M1+M2+M3,2,S),2,S),2,S) Chaos Balance Osc A1:=C-Ref(Wilders(MP(),5),-3); A2:=C-Ref(Wilders(MP(),8),-5); A3:=C-Ref(Wilders(MP(),13),-8); 0;A1;A2;A3; Chaos Fractal { Chaos Fractal (simple version +1=Up, -1=Dn) } High1 := Ref(HIGH,-2); High2 := Ref(HIGH,-1); High3 := Ref(HIGH,0); High4 := Ref(HIGH,1); High5 := Ref(HIGH,2); Low1 := Ref(LOW,-2); Low2 := Ref(LOW,-1); Low3 := Ref(LOW,0); Low4 := Ref(LOW,1); Low5 := Ref(LOW,2); Fractal := If((High3 > High1) AND (High3 > High2) AND (High3 > High4) AND (High3>High5), +1,0); Fractal := If((Low3 < Low1) AND (Low3 < Low2) AND (Low3 < Low4) AND (Low3 < Low5), If(Fractal > 0, 0, -1), Fractal); Fractal; ACC Blue Acc:= Mov(MP(),10,S)- Mov(MP(),70,S)- Mov(Mov(MP(),10,S)- Mov(MP(),70,S),5,S); SIG:=Mov(ACC,5,S); Per1:=Input("lookback",10,100,60); Perc1:=Input("percent uband",.800,.999,.950); Perc2:=Input("percent lband",1.010,1.200,1.050); UB:=Ref((HHV(ACC,Per1)*Perc1),-1); LB:=Ref((LLV(ACC,Per1)*Perc2),-1); MB:=(UB+LB)*.5; UB;LB;Sig;ACC; ACC Green Acc:= Mov(MP(),5,S)- Mov(MP(),17,S)- Mov(Mov(MP(),5,S)- Mov(MP(),17,S),5,S); SIG:=Mov(ACC,5,S); Per1:=Input("lookback",10,100,60); Perc1:=Input("percent uband",.800,.999,.950); Perc2:=Input("percent lband",1.010,1.200,1.050); UB:=Ref((HHV(ACC,Per1)*Perc1),-1); LB:=Ref((LLV(ACC,Per1)*Perc2),-1); UB;LB;SIG;ACC; ACC Red Acc:=Mov(MP(),5,S)- Mov(MP(),34,S)- Mov(Mov(MP(),5,S)- Mov(MP(),34,S),5,S); SIG:=Mov(ACC,5,S); Per1:=Input("lookback",10,100,60); Perc1:=Input("percent uband",.800,.999,.950); Perc2:=Input("percent lband",1.010,1.200,1.050); UB:=Ref((HHV(ACC,Per1)*Perc1),-1); LB:=Ref((LLV(ACC,Per1)*Perc2),-1); UB;LB;SIG;ACC;
minnamor  
#2 Posted : Sunday, May 8, 2005 1:56:27 PM(UTC)
minnamor

Rank: Advanced Member

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

I have tried to build a System + Explorer + Expert (separate from Equis add-on which is password protected) based on the book "New Trading Dimensions". I took indicators from the list in www.guppytraders.com and your own list. Following the book, I built a System with Long Entry and Short Entry based on the Alligator Sign (AO, AC and Balance Line signals are used to acculate on profitable positions according to the book and have been included only in the explorer). I had two questions that I hope somebody will be able to answer :? : A. Some indicators included in your list are not included in the book strategies, namely "Chaos Balance Lines Strength", "Chaos Balance Osc ", "ACC Blue ", "ACC Green" and "ACC Red"; are they part of a more comprehensive Profitunity trading strategy (I did not read William's first book "Trading Chaos" nor did I purchase his educational products)? B. I have a programming problem with one of the exit strategies mentioned in the book; this states that after 5 consecutive bars in the "zone" (Green for longs and Red for shorts) the stop is placed at the low (for longs)/ high (for shorts) of the previous bar until it is hit. I do not know how to fix a point in time when the condition is satisfied from which he new stop rule should apply. The first results of the system are encouraging and would like to share it with you here if I can solve the above problem. Thanks and regards.
henry1224  
#3 Posted : Monday, May 9, 2005 9:09:01 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
ACC Blue Acc:= Mov(MP(),10,S)- Mov(MP(),70,S)- Mov(Mov(MP(),10,S)- Mov(MP(),70,S),5,S); SIG:=Mov(ACC,5,S); Per1:=Input("lookback",10,100,60); Perc1:=Input("percent uband",.800,.999,.950); Perc2:=Input("percent lband",1.010,1.200,1.050); UB:=Ref((HHV(ACC,Per1)*Perc1),-1); LB:=Ref((LLV(ACC,Per1)*Perc2),-1); MB:=(UB+LB)*.5; UB;LB;Sig;ACC; ACC Green Acc:= Mov(MP(),5,S)- Mov(MP(),17,S)- Mov(Mov(MP(),5,S)- Mov(MP(),17,S),5,S); SIG:=Mov(ACC,5,S); Per1:=Input("lookback",10,100,60); Perc1:=Input("percent uband",.800,.999,.950); Perc2:=Input("percent lband",1.010,1.200,1.050); UB:=Ref((HHV(ACC,Per1)*Perc1),-1); LB:=Ref((LLV(ACC,Per1)*Perc2),-1); UB;LB;SIG;ACC; ACC Red Acc:=Mov(MP(),5,S)- Mov(MP(),34,S)- Mov(Mov(MP(),5,S)- Mov(MP(),34,S),5,S); SIG:=Mov(ACC,5,S); Per1:=Input("lookback",10,100,60); Perc1:=Input("percent uband",.800,.999,.950); Perc2:=Input("percent lband",1.010,1.200,1.050); UB:=Ref((HHV(ACC,Per1)*Perc1),-1); LB:=Ref((LLV(ACC,Per1)*Perc2),-1); UB;LB;SIG;ACC; The ACC Red is closest to the original AC Osc, but I added a signal line and Upper and lower bands. The ACC Green and ACC Blue are based on the ideas from Tom Joseph and advanced get, faster and slower Oscillators The chaos Balance lines strength is developed from an idea by John Murphy finding out how far the Balance lines are from a median point
minnamor  
#4 Posted : Thursday, May 12, 2005 9:25:55 AM(UTC)
minnamor

Rank: Advanced Member

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

Can you direct me to articles, books or internet sites where I can find insights into the use of these indicators and their utilisation in trading systems? Thanks in advance.
henry1224  
#5 Posted : Friday, May 13, 2005 12:06:42 AM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
Marilyn  
#6 Posted : Friday, May 13, 2005 1:24:34 AM(UTC)
Marilyn

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 9/10/2004(UTC)
Posts: 863
Location: Salt Lake City, UT

Don't really know if it is applicable but there is a lot of information about technical indicators in the Technical Analysis from A to Z book as well. You can read it online at https://www.metastock.com/TAAZ - don't mind the nag screens, I'm just after your email address :)
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.