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

Notification

Icon
Error

Options
Go to last post Go to first unread
birillone  
#1 Posted : Sunday, February 22, 2015 5:48:42 PM(UTC)
birillone

Rank: Newbie

Groups: Registered Users, Subscribers, Unverified Users
Joined: 2/22/2015(UTC)
Posts: 1

Hello Forum Members,

I would like to visualize the Quaterly Classic Pivot Point (H+L+C/3) on dayly and weekly charts, but I have found only the Monthly Pivot Indicator.

Any suggestions ?

Thanks in advance

G Boroni

 

mstt  
#2 Posted : Sunday, February 22, 2015 8:49:33 PM(UTC)
mstt

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 7/25/2005(UTC)
Posts: 1,042

Was thanked: 57 time(s) in 54 post(s)
Hi G Here's an indicator that should do what you want. I've added Mean Price and Weighted Close to the Typical Price that you asked for. The default time frame is set to quarterly (3 months), but the indicator can also plot daily, weekly, fortnightly, or 1, 2, 4, 6 or 12 monthly time frames. You will need the Forum DLL; it's available from this website, is 188KB in size and will need renaming as "Forum.dll" (unless you choose to change my indicator to match the name of the download). Making a copy and renaming it seems to me to be the best way to go. The timing module has been deleted as it is proprietary code and not available in the public domain. Nevertheless I will get the complete formula to you as soon as I have an assurance that you will not disclose the timing module to anyone. You can email me at rlarsen@quik.co.nz. Roy {Multi-Frame D+ Pivot} {Uses Equis Forum DLL} {Roy Larsen, 2015, 23/2/15} {User settings} N:=Input("Multi-Frame D+ Pivot Price",0,0,0); R:=Input("Price, 1=Mean 2=Typical 3=Weighted Close",1,3,2); J:=Input("Months/Frame, 0=Weekly 5=Bi-weekly 10=Daily",0,12,0); Q:=Input("Mode, 0=Static 1=Dynamic 2=Delayed",0,2,1); G:=Input("End-of-Frame Offset in Days, 0-13",0,13,0); {D+ Timing} {This section of code has been deleted} {Frame prices (H, L and C)} B:=HighestSince(1,M+(Z=1),H); Y:=LowestSince(1,M+(Z=1),L); B:=ValueWhen(1,J,If(J=1,B,ValueWhen(2-G,1,B))); Y:=ValueWhen(1,J,If(J=1,Y,ValueWhen(2-G,1,Y))); K:=ValueWhen(1,J,If(J=1,C,ValueWhen(2-G,1,C))); {Calculate/plot Pivot Price} U:=(B+Y)/2; { Mean } X:=(B+Y+K)/3; { Typical } Z:=(B+Y+2*K)/4; { Weighted } If(R=1,U,If(R=2,X,Z)); {end}
mstt  
#3 Posted : Wednesday, February 25, 2015 10:40:48 PM(UTC)
mstt

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 7/25/2005(UTC)
Posts: 1,042

Was thanked: 57 time(s) in 54 post(s)
GB emailed this response to me after I sent him the complete formula ..... "Hi Roy, It works !!!!!!!! and it's simply perfect!!! It will save me a lot of work (I used to to do the math with Excel )..... Thank you so much." Roy
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.