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

Notification

Icon
Error

Options
Go to last post Go to first unread
csbro  
#1 Posted : Friday, February 4, 2011 9:41:36 AM(UTC)
csbro

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 12/7/2006(UTC)
Posts: 35

Is there a code to show "flat, or ascending" base chart pattern something like;
Day(-1) !> 1% of Day(0) and Day(-2) !>of Day(-1) and Day(-3)!>1% of Day(-2)
and Day(0) Vol >50% Day(-1)and Day (0) Vol >50%Day(-2) and Day(0) Vol >50% Day(-3)
and Day(-1)Volatility!>5% and Day(-2)Volatility!>5%and Day(-3) Volatility!>5%
Used to explore xx# of charts to find that type of pattern thern open these charts in an "O'Neil" type template showing MA, A/D, Vol MA (50), Volatility, etc....so as to help identify "Pocket Pivot Points"
johnl  
#2 Posted : Saturday, February 5, 2011 7:32:46 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

Here some code you can modify:

a1:=Ref(C,-1)>0.01*C;
a2:=Ref(C,-2)>0.01*Ref(C,-1);
a3:=Ref(C,-3)>0.01*Ref(C,-2);
b1:=V>0.5*Ref(V,-1);
b2:=Ref(V,-1)>0.5*Ref(V,-2);
b3:=Ref(V,-2)>0.5*Ref(V,-3);
c0:=Stdev(C,10);
c1:=Ref(c0,-1)>0.05;
c2:=Ref(c0,-2)>0.05;
c3:=Ref(c0,-3)>0.05;
d1:=a1*a2*a3*b1*b2*b3*c1*c2*c3;
d1

You should be able to create the template, then create a exploration with your modified code as a filter, then open the resulting charts from the exploration with your template.

csbro  
#3 Posted : Monday, February 7, 2011 10:16:10 AM(UTC)
csbro

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 12/7/2006(UTC)
Posts: 35

Thanks, Johnl. I'll give it a whirl.
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.