• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 12:27am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 12:27am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Open Trade near Pivot line (Pivot Point) 14 replies

Required: Monthly/Weekly Pivot indic with pivot mediums for MT5 7 replies

Pivot Point indicators with classic formula 4 replies

Help with daily pivot, weekly pivot on MT4 3 replies

Pivot Point indicators? 6 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 67
Attachments: Weekly and Monthly (Daily) Pivot Point Indicators
Exit Attachments
Tags: Weekly and Monthly (Daily) Pivot Point Indicators
Cancel

Weekly and Monthly (Daily) Pivot Point Indicators

  • Last Post
  •  
  • 1 Page 23 4
  • 1 Page 23 4
  •  
  • Post #21
  • Quote
  • Oct 8, 2011 12:54pm Oct 8, 2011 12:54pm
  •  JamesP
  • | Commercial Member | Joined Oct 2010 | 52 Posts
yeah yeah, no rush thanks BT

would be fab if you could do that. genius dude cheers!
hope trading is going well for you? are you on any other forums this ones barely got a pulse.
 
 
  • Post #22
  • Quote
  • Oct 9, 2011 1:46pm Oct 9, 2011 1:46pm
  •  Billy T
  • | Joined Feb 2011 | Status: Member | 11 Posts
Hi James,
I've removed S/R lines, just leaving the 4 pivot lines.
They are all light blue. If you'd like them all different colours, let me know.
I find it easier with them all different.
I'm not a coder, I've just played around with a few indicators, changing a few things here & there to suit myself.
The main thread I look at lately is "PRICE Accordingly", but it's moving faster than I've been reading it.
If you read too many threads around here you end up on information overload, or up to your ears in shite.
I've been using pivots for a few years & I was wondering about 4Hour pivots, so I searched FF for them & ended up here.
Have you been using pivots long?

Cheers,
BT
Attached File(s)
File Type: mq4 PivotCustom_4TFs_ThinLines_NoSR.mq4   46 KB | 4,198 downloads
 
 
  • Post #23
  • Quote
  • Oct 14, 2011 9:23am Oct 14, 2011 9:23am
  •  JamesP
  • | Commercial Member | Joined Oct 2010 | 52 Posts
nice job, hope other traders find it. its simple and neat and gives you an idea of some major SR. i tried to use the pivots but came un stuck. I just know they are useful so like to have them available. dunno how you worked your magic but thanks again!!

The price accordingly is a bit heavy, alot to read and soak in, will give it a go on a demo. catch you later.
 
 
  • Post #24
  • Quote
  • Jan 23, 2012 2:46pm Jan 23, 2012 2:46pm
  •  kishoresiju
  • | Joined Jan 2012 | Status: Junior Member | 2 Posts
Hello All MASTER MIND,
I have a Fibonacci Daily Pivot S/R indicator.
It works very nice... But I need some extra features like:
1. Add Extra Feature for Weekly and Monthly Pivot, Support - Resistance
2. Exclude Sunday Candles. Add GMT offset
3. Make all solid thin lines with gray color, I don't like dashed dotted lines.

I know this is very simple job for experience programmer.
I have attached the file, please edit it and add such extra feature and
share it everywhere as it is mostly needed.

Thank you
Attached File(s)
File Type: mq4 Fibonacci Pivots.mq4   5 KB | 3,485 downloads
 
 
  • Post #25
  • Quote
  • Apr 29, 2012 12:13am Apr 29, 2012 12:13am
  •  Eklavya
  • | Joined Dec 2007 | Status: Member | 447 Posts
Awesome Indicators!!
 
 
  • Post #26
  • Quote
  • Aug 20, 2012 5:21pm Aug 20, 2012 5:21pm
  •  derwisch
  • | Joined May 2012 | Status: Member | 19 Posts
Lots of indicators, thanks. Does anyone of them plot the historical pivot lines of weekly and montly pivots?
 
 
  • Post #27
  • Quote
  • Nov 27, 2012 2:46am Nov 27, 2012 2:46am
  •  pipyoda
  • | Joined Jan 2012 | Status: Member | 15 Posts
Billy T, Thanks for the change to this great Pivot indicator, just what I needed. May the pips be with you. Cheers Pip.....
 
 
  • Post #28
  • Quote
  • Mar 19, 2013 8:24pm Mar 19, 2013 8:24pm
  •  NoJobRob
  • | Joined Aug 2010 | Status: "Member" lol | 242 Posts
I customized the AllPivots_v2 indicator to my liking, and saved 3 different versions of it as Pivots Day, Pivots Week, and Pivots Month so I could just slap on whatever I wanted on a particular chart. However, for some reason it only shows one of them. I had Pivots Day plotted and then when I added Pivots Week it made Pivots Day disappear while showing Pivots Week. Same thing for Pivots Month. Can anyone tell me why this is happening? Here's the code and indi's:

Inserted Code
//+------------------------------------------------------------------+
//|                                                 AllPivots_v2.mq4 |
//|                                  Copyright © 2007, Forex-TSD.com |
//|                         Written by IgorAD,[email protected] |   
//|            http://finance.groups.yahoo.com/group/TrendLaboratory |                                      
//+------------------------------------------------------------------+
#property copyright "Copyright © 2006, Forex-TSD.com "
#property link      "http://www.forex-tsd.com/"

#property indicator_chart_window
#property indicator_buffers   4
#property indicator_color1    LightBlue
#property indicator_color2    Tomato
#property indicator_color3    Aqua
#property indicator_color4    Orange

extern int     CountPeriods=10;
extern string  TimePeriod="D1";
extern bool    Plot_pivots=true;
extern bool    Plot_middle=True;
extern bool    Plot_camarilla=false;

   datetime time1;
   datetime time2;
   double open,close,high,low;
   double P,R1,R2,R3,S1,S2,S3,M0,M1,M2,M3,M4,M5;
   double H1,H2,H3,H4,L1,L2,L3,L4,Range;
   double pstyle, mstyle,cstyle;
   int shift, num, period;
     
   void ObjDel()
   {
      for (;num<=CountPeriods;num++)
      {
      ObjectDelete("PP["+num+"]");
      ObjectDelete("R1["+num+"]");
      ObjectDelete("R2["+num+"]");
      ObjectDelete("R3["+num+"]");
      ObjectDelete("S1["+num+"]");
      ObjectDelete("S2["+num+"]");
      ObjectDelete("S3["+num+"]");
      
      ObjectDelete("M0["+num+"]");
      ObjectDelete("M1["+num+"]");
      ObjectDelete("M2["+num+"]");
      ObjectDelete("M3["+num+"]");
      ObjectDelete("M4["+num+"]");
      ObjectDelete("M5["+num+"]");
      
      ObjectDelete("H1["+num+"]");
      ObjectDelete("H2["+num+"]");
      ObjectDelete("H3["+num+"]");
      ObjectDelete("H4["+num+"]");
      ObjectDelete("L1["+num+"]");
      ObjectDelete("L2["+num+"]");
      ObjectDelete("L3["+num+"]");
      ObjectDelete("L4["+num+"]");
      }
   }

   void PlotLine(string name,double value,double line_color,double style)
   {
   ObjectCreate(name,OBJ_TREND,0,time1,value,time2,value);
   ObjectSet(name, OBJPROP_WIDTH, 1);
   ObjectSet(name, OBJPROP_STYLE, style);
   ObjectSet(name, OBJPROP_RAY, false);
   ObjectSet(name, OBJPROP_BACK, true);
   ObjectSet(name, OBJPROP_COLOR, line_color);
    }        
int init()
  {
   if (TimePeriod=="H1" || TimePeriod=="60") period=PERIOD_H1; 
   else
   if (TimePeriod=="H4" || TimePeriod=="240") period=PERIOD_H4; 
   else
   if (TimePeriod=="D1" || TimePeriod=="1440") period=PERIOD_D1;
   else
   if (TimePeriod=="W1" || TimePeriod=="10080") period=PERIOD_W1; 
   else
   if (TimePeriod=="MN" || TimePeriod=="43200") period=PERIOD_MN1;
   else
   {
   Comment("Wrong TimePeriod. Must be H1, H4, D1, W1 or MN"); 
   return(0);
   }
  return(0);
  }
   
   
int deinit()
  {
   ObjDel();
   Comment("");
   return(0);
  }

int start()
  {
  int i;
     
  ObjDel();
  num=0;
  
  for (shift=CountPeriods-1;shift>=0;shift--)
  {
  time1=iTime(NULL,period,shift);
             
  high  = iHigh(NULL,period,shift+1);
  low   = iLow(NULL,period,shift+1);
  open  = iOpen(NULL,period,shift+1);
  close = iClose(NULL,period,shift+1);
  
  P  = (high+low+close)/3.0;
        
  R1 = 2*P-low;
  R2 = P+(high - low);
  R3 = (2*P)+(high-(2*low));
        
  S1 = 2*P-high;
  S2 = P-(high - low);
  S3 = (2*P)-((2*high)-low);
         
  M0=0.5*(S2+S3);
  M1=0.5*(S1+S2);
  M2=0.5*(P+S1);
  M3=0.5*(P+R1);
  M4=0.5*(R1+R2);
  M5=0.5*(R2+R3);
         
  Range = high - low;
  H4 = close + (Range * 1.1/2.0);
  H3 = close + (Range * 1.1/4.0);
  H2 = close + (Range * 1.1/6.0);
  H1 = close + (Range * 1.1/12.0);

  L1 = close - (Range * 1.1/12.0);
  L2 = close - (Range * 1.1/6.0);
  L3 = close - (Range * 1.1/4.0);
  L4 = close - (Range * 1.1/2.0);
       
  time2=time1+period*60;
         
  pstyle=2;
  mstyle=3;
  cstyle=1;
  num=shift;
       
  PlotLine("PP["+num+"]",P,Gray,pstyle);
  if(Plot_pivots)
  {
        
   PlotLine("R1["+num+"]",R1,Red,pstyle);
   PlotLine("R2["+num+"]",R2,FireBrick,pstyle);
   PlotLine("R3["+num+"]",R3,Maroon,pstyle);
               
   PlotLine("S1["+num+"]",S1,Lime,pstyle);
   PlotLine("S2["+num+"]",S2,Green,pstyle);
   PlotLine("S3["+num+"]",S3,DarkGreen,pstyle);
  }
         
  if(Plot_middle)
  {
   PlotLine("M0["+num+"]",M0,White,pstyle);
   PlotLine("M1["+num+"]",M1,White,pstyle);
   PlotLine("M2["+num+"]",M2,White,pstyle);
   PlotLine("M3["+num+"]",M3,White,pstyle);
   PlotLine("M4["+num+"]",M4,White,pstyle);
   PlotLine("M5["+num+"]",M5,White,pstyle);
  }
         
  if(Plot_camarilla)
  {
   PlotLine("H4["+num+"]",H4,LightBlue,cstyle);
   PlotLine("H3["+num+"]",H3,DeepSkyBlue,cstyle);
   PlotLine("H2["+num+"]",H2,MediumSlateBlue,cstyle);
   PlotLine("H1["+num+"]",H1,RoyalBlue,cstyle);
      
   PlotLine("L1["+num+"]",L1,Chocolate,cstyle);
   PlotLine("L2["+num+"]",L2,Orange,cstyle);
   PlotLine("L3["+num+"]",L3,Goldenrod,cstyle);
   PlotLine("L4["+num+"]",L4,Yellow,cstyle);
  }
  }
   return(0);
  }
//+------------------------------------------------------------------+
Attached File(s)
File Type: mq4 Pivots Day.mq4   5 KB | 3,647 downloads
File Type: mq4 Pivots Week.mq4   5 KB | 3,761 downloads
File Type: mq4 Pivots Month.mq4   5 KB | 3,669 downloads
Get money, don't let money get you. @kauaiforex
 
 
  • Post #29
  • Quote
  • Mar 19, 2013 10:18pm Mar 19, 2013 10:18pm
  •  cyber1
  • Joined Jan 2011 | Status: Member | 1,299 Posts
Quoting NoJobRob
Disliked
I customized the AllPivots_v2 indicator to my liking, and saved 3 different versions of it as Pivots Day, Pivots Week, and Pivots Month so I could just slap on whatever I wanted on a particular chart. However, for some reason it only shows one of them. I had Pivots Day plotted and then when I added Pivots Week it made Pivots Day disappear while showing Pivots Week. Same thing for Pivots Month. Can anyone tell me why this is happening? Here's the code and indi's:
Ignored
Rob-
All objects must have a unique names. If you are adding 2 indicators with the same code and objects that have the same name eventhough they are in different files it will only show one object with that name. Usually whichever indicator you added last will be shown, others will be deleted.
Solution: go through the code and make sure the objects have unique names across all 3 files. In this case 2, the third one you can leave as it is.
 
 
  • Post #30
  • Quote
  • Edited Mar 20, 2013 2:58am Mar 19, 2013 11:44pm | Edited Mar 20, 2013 2:58am
  •  NoJobRob
  • | Joined Aug 2010 | Status: &quot;Member&quot; lol | 242 Posts
Got it. Thank you Cyber. I changed the object names by adding D for day, W for week, and M for month. So, the daily central pivot is DCP, the monthly R1 is MR1, the weekly S2 is WS2, and so on.

Here's how they all look. Daily pivots are dotted, weekly are dashed, and monthly are solid. I must say, this is one of, if not the cleanest looking pivot ensemble I've seen on MT4. LOL


http://i1185.photobucket.com/albums/...ps0c42dc2d.jpg


I'm a busy guy and haven't had as much time as I'd like to learn MQL4, but I've certainly made some progress. Thanks again for your help, and here's the indi's for anyone who wants them.
Attached File(s)
File Type: mq4 Pivots Day.mq4   5 KB | 3,126 downloads
File Type: mq4 Pivots Week.mq4   5 KB | 3,148 downloads
File Type: mq4 Pivots Month.mq4   5 KB | 2,918 downloads
Get money, don't let money get you. @kauaiforex
 
 
  • Post #31
  • Quote
  • Mar 20, 2013 2:58am Mar 20, 2013 2:58am
  •  NoJobRob
  • | Joined Aug 2010 | Status: &quot;Member&quot; lol | 242 Posts
Corrected the attachments. I guess compiling the indi's isn't enough. LOL Saved them to desktop and attached from there. Should work.
Get money, don't let money get you. @kauaiforex
 
 
  • Post #32
  • Quote
  • May 13, 2013 12:29am May 13, 2013 12:29am
  •  Stearno
  • | Joined Aug 2011 | Status: Member | 63 Posts
Anyone have a pivots indicator that puts the day's pivots int he data window? I want to use it in an EA, so I need the information put into the data window. I am specifically looking for floor pivots, but it would be nice to have other pivot optinos if possible.
 
 
  • Post #33
  • Quote
  • Jan 27, 2014 2:51am Jan 27, 2014 2:51am
  •  Imsuccessful
  • | Joined Jan 2014 | Status: Member | 3 Posts
Quoting kishoresiju
Disliked
Hello All MASTER MIND, I have a Fibonacci Daily Pivot S/R indicator. It works very nice... But I need some extra features like: 1. Add Extra Feature for Weekly and Monthly Pivot, Support - Resistance 2. Exclude Sunday Candles. Add GMT offset 3. Make all solid thin lines with gray color, I don't like dashed dotted lines. I know this is very simple job for experience programmer. I have attached the file, please edit it and add such extra feature and share it everywhere as it is mostly needed. Thank you {file}
Ignored

Hey there, I love your Fibonacci Pivot Indicator... I was wondering, did you ever get those modifications you wanted? I would love to have the modified version that you were looking for.
 
 
  • Post #34
  • Quote
  • Mar 16, 2014 10:13pm Mar 16, 2014 10:13pm
  •  paulsue
  • | Joined Jun 2012 | Status: Member | 19 Posts
Quoting aquaart
Disliked
Hi y'all, :A Request: I have a large number of indicators here, from many different people. However I am looking for a weekly pivot point indicator that has an adjustable timezone (time zone). And a nice thank you to all the people that created these indi's. That is I would like to be able to do weekly pivots based on Monday 2am through to Monday 2am as my servers are based in Cypress and hence their 2am is GMT midnight. I would also like to be able to 7am to 7am so that I get the NY's EST pivot lines. Cause my programming skills are very limited,...
Ignored
Hello:
I just now loaded onto my chart AllPivots v2 indicaor. It plots nicely Daily pivots on the Daily chart, Weekly pivots on the weekly chart and but does not plot monthly pivots on the monthly charts, do you know why? I need Monthly pivots as well on the Monthly chart. Can anyone help. Paul Ika
 
 
  • Post #35
  • Quote
  • Apr 21, 2014 11:01am Apr 21, 2014 11:01am
  •  paulsue
  • | Joined Jun 2012 | Status: Member | 19 Posts
Quoting aquaart
Disliked
Hi y'all, :A Request: I have a large number of indicators here, from many different people. However I am looking for a weekly pivot point indicator that has an adjustable timezone (time zone). And a nice thank you to all the people that created these indi's. That is I would like to be able to do weekly pivots based on Monday 2am through to Monday 2am as my servers are based in Cypress and hence their 2am is GMT midnight. I would also like to be able to 7am to 7am so that I get the NY's EST pivot lines. Cause my programming skills are very limited,...
Ignored
Hello: I just started using AllPivots_v2 indicator. I only do Daily chart trading using Weekly Camarilla levels on my Daily chart. The indicator works well. I live in Boston, in USA in EST zone. I am sure that this indicator is designed on the assumtions of

a. 5 Daily charts in a week
b. start time of the Daily chart is 5pm EST

Can anyone ple. confirm my thinking is correct?

Paul Ika
 
 
  • Post #36
  • Quote
  • May 1, 2014 3:08pm May 1, 2014 3:08pm
  •  paulsue
  • | Joined Jun 2012 | Status: Member | 19 Posts
Quoting Imsuccessful
Disliked
{quote} Hey there, I love your Fibonacci Pivot Indicator... I was wondering, did you ever get those modifications you wanted? I would love to have the modified version that you were looking for.
Ignored
Did you ever find your fibo pivot indicator which can plot Daily, Weekly and Monthly fibo pivots on your Daily chart? I am looking for this indicator as well. I have an indicator which I am using now, which writes Weekly and Monthly Support/Resistance in big letters which masks my candles. There are no adjustable settings on this one! Hence I am looking for a Daily/Weekly/Monthly fibo pivot indicator which does not clutter the Daily chart with too much of text on the chart. Can you help?

Paul Ika
 
 
  • Post #37
  • Quote
  • May 1, 2014 3:14pm May 1, 2014 3:14pm
  •  neil324
  • | Joined Apr 2011 | Status: Member | 340 Posts
Quoting paulsue
Disliked
{quote} Did you ever find your fibo pivot indicator which can plot Daily, Weekly and Monthly fibo pivots on your Daily chart? I am looking for this indicator as well. I have an indicator which I am using now, which writes Weekly and Monthly Support/Resistance in big letters which masks my candles. There are no adjustable settings on this one! Hence I am looking for a Daily/Weekly/Monthly fibo pivot indicator which does not clutter the Daily chart with too much of text on the chart. Can you help? Paul Ika
Ignored
Post the indicator up and I will try and change it for you.
 
 
  • Post #38
  • Quote
  • May 1, 2014 4:03pm May 1, 2014 4:03pm
  •  paulsue
  • | Joined Jun 2012 | Status: Member | 19 Posts
Oh Neil324, excellent. Here we go. Ple. allow me to explain.

Here is what I am doing right now. I am using 3 separate indicators right now, one for Daily fib pivots (Fibonacci Pivots THV), 2nd one for weekly fib pivots (fibopiv weekly) and a 3rd one for monthly fib pivots (fibopiv monthly). I plot all three, Daily, Weekly and Monthly fib pivot lines onto my Daily chart. Hence it can be a lot lines. They are fine, I can deal with them as long as the text is limited to simple abbreviations.

In the Daily fib pivot indicator (Fibonacci Pivots THV), could you change the text to say DP for Daily Pivot and Daily S/R lines as DS1/DS2/DS3 and DR1/DR2/DR3.
In the same way, the weekly fib pivot indicator (fibopiv weekly) should say WP, WS1/WS2/WS3 and WR1/WR2/WR3 and Monthly fib pivot indicator (fibopiv monthly) should say, MP, MS1/MS2/MS3 and MR1/MR2/MR3.

When I place all three indicators on my Daily chart, the line labels should be placed in dfferent places, so that they do not mask/overlap each other. If you can maintain the same font and style letters for all labels for all 3 indicators, it will be nice and uniform across. These 3 indicators are nice collection for anybody who does fibonacci swing trading.

Here the 2 screenshots, first one with Daily fib indicator on the Daily chart and the second one has all three on it. You can see what I mean by having too much text and over overlapping each other.

Here are all 3 indicators attached. I really appreciate your help. Any questions, ple. let me know.
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: fpa1.png
Size: 4.3 MB
Click to Enlarge

Name: fpa2.png
Size: 4.3 MB
Attached File(s)
File Type: mq4 Fibonacci Pivots THV.mq4   5 KB | 1,484 downloads
File Type: mq4 fibopiv weekly.mq4   5 KB | 1,525 downloads
File Type: mq4 fibopiv monthly.mq4   5 KB | 1,331 downloads
 
 
  • Post #39
  • Quote
  • May 1, 2014 4:46pm May 1, 2014 4:46pm
  •  neil324
  • | Joined Apr 2011 | Status: Member | 340 Posts
Here you go.
Attached File(s)
File Type: mq4 Fibonacci Pivots THV.mq4   5 KB | 1,547 downloads
File Type: mq4 fibopiv monthly.mq4   5 KB | 1,442 downloads
File Type: mq4 fibopiv weekly.mq4   5 KB | 1,665 downloads
 
1
  • Post #40
  • Quote
  • May 1, 2014 8:21pm May 1, 2014 8:21pm
  •  paulsue
  • | Joined Jun 2012 | Status: Member | 19 Posts
Neil:
I really appreciate your help on this matter.
Really very timely.
One small request, if you can not do it, I would understand, if you can't do it. No problems.

When I place Fibonacci Pivots THV indicator on the Daily chart with visualization only in Daily chart, I am still seeing the Daily pivot line and the text of the S/R lines on other time frame charts!

In the case of fibopivo weekly and fibopivo monthly indicators, I see the labels of S/R lines on other time frame charts, other than what the visualization calls for.

Is it possible for you to make them disappear from other charts, so that these lines and labels only appear on the chart that we call for without any other lines or any other related text/labels on any other charts? In other words, if you can make the visualization work for all 3 indicators, this would be perfect.

Any questions, I am in front of the computer for the balance of the evening.

Thx a bunch for what you did already!

Paul Ika
 
 
  • Platform Tech
  • /
  • Weekly and Monthly (Daily) Pivot Point Indicators
  • Reply to Thread
    • 1 Page 23 4
    • 1 Page 23 4
0 traders viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023