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 : Sunday, October 24, 2010 10:17:34 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)
Here are 2 charts using the Balance of Power indicator

UserPostedImage

UserPostedImage

using this indicator without some type of trend filter is not recommended for trading

Pds1:=Input("BOP Length",1,200,5);
Pds2:=Input("Sig Length",1,200,7);
rev:=Input("Reverse trade signals? [1]Yes [0]No",0,1,0);
THL:=If(H-L=0,.00001,H-L);
{Balance of Power}
A:=(((H-O)/(THL))+((C-L)/(THL))+(If(C>O,(C-O)/(THL),0)))/3 ;
B:=(((O-L)/(THL))+((H-C)/(THL))+(If(C>O,0,(O-C)/(THL))))/3 ;
{Indicator:=A-B}
{Smoothed Indicator and Signal}
Sig1:=Mov(Mov(Mov(A-B,Pds1,S),2,S),2,S);
Sig2:=Mov(Sig1,Pds2,S);

{Signals}
entry:=Cross(Sig1,Sig2) ;
exit:=Cross(Sig2,Sig1);
henry1224  
#2 Posted : Sunday, October 24, 2010 10:46:26 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)
For interpretation refer to the August 2000 issue of Technical Analysis of STOCKS & COMMODITIES magazine.
Laisze  
#3 Posted : Sunday, October 24, 2010 8:28:59 PM(UTC)
Laisze

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 11/18/2007(UTC)
Posts: 96
Location: HK

That VSTpro market filter makes a big difference to the results... Can you please suggest a good trend filter to use with the free VST?
Users browsing this topic
Guest (Hidden)
Similar Topics
Balance Of Power w Trend Direction Expert (Formula Assistance)
by henry1224 4/23/2005 3:31:08 PM(UTC)
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.