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

Notification

Icon
Error

Options
Go to last post Go to first unread
NeilW  
#1 Posted : Tuesday, November 13, 2012 12:31:49 AM(UTC)
NeilW

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 8/4/2012(UTC)
Posts: 22

Thanks: 1 times

Hi Everyone

Where can I find info on all the PS Systems. Especially PS Meisels OB/OS. Have tried the help function but no success.

Thanks

wabbit  
#2 Posted : Tuesday, November 13, 2012 5:58:07 AM(UTC)
wabbit

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 10/28/2004(UTC)
Posts: 3,111
Location: Perth, Western Australia

Was thanked: 16 time(s) in 16 post(s)
Check the Mastering Metastock manual, or just read the source code. wabbit [:D]
henry1224  
#3 Posted : Tuesday, November 13, 2012 10:55:45 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)
I don't think that you have used the search function of this forum

http://forum.equis.com/forums/thread/33599.aspx

This is my version using PowerPivots Plus Add-on

Code:

TF:=Input("Time frame",1,100,1);
Off:=Input("Offset",0,100,0);
Type:=Input("1=MP,2=Typ,3=(O+H+L+C)/4,4=(O+H+L+(2*C))/5,5=C",1,5,5);
Len:=Input("Length",5,100,10);
OD:= ExtFml("PowerPivots.TDataCreate",0,TF); 
HD:= ExtFml("PowerPivots.TDataCreate",1,TF); 
LD:= ExtFml("PowerPivots.TDataCreate",2,TF) ;
CD:= ExtFml("PowerPivots.TDataCreate",3,TF) ;
Type2:=If(Type=1,(HD+LD)/2,If(Type=2,(HD+LD+CD)/3,If(Type=3,(OD+HD+LD+CD)/4,If(Type=4,(OD+HD+LD+(2*CD))/5,CD))));
A:=Sum(If(Type2>Ref(Type2,-1),+1,If(Type2<Ref(Type2,-1),-1,0)),Len);
A:=ExtFml( "PowerPivots.TDataLocalize", A, TF, Off);
A;


I find that in a higher time frame you will see better ob/os zones
NeilW  
#4 Posted : Tuesday, November 13, 2012 11:02:42 PM(UTC)
NeilW

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 8/4/2012(UTC)
Posts: 22

Thanks: 1 times
Thanks Wabbit and Henry - Appreciated
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.