rgibsongss
May 10 2007, 06:03 AM
Is it possible to get a moving average indicator of the daily pivot points with a variable period?
Thanks
cskidmore
May 10 2007, 10:01 AM
Hello,
Could you be a little more specific please? What exactly is the moving average using for its data?
Regards,
Chris
rgibsongss
May 10 2007, 12:01 PM
Chris,
Thanks for the quick reply. It would be plotted as a line representing the average of the previous x number of daily pivot points. For instance. The last 3 days daily pivot points (as calculated at 1700 EST) are 1.3536, 1.3558, 1.3586. So the moving average line would be at 1.3560 for today. I believe this is how you would calculate a simple moving average of the pivot points no?
Thanks
cskidmore
May 10 2007, 01:40 PM
Hello,
Yes, I just wanted to make sure that what you've just described is what you actually wanted. Do you want just an MA or can we simply add the MA to the existing pivot point indicator?
Regards,
Chris
rgibsongss
May 10 2007, 02:02 PM
I would prefer to have just the MA if possible.
Thanks!
cskidmore
May 10 2007, 03:03 PM
Hello,
Interesting indicator... Please see the attached file. It will show up as "Pivot Points MA - Daily" in your Indicator Builder indicator listing.
Regards,
Chris
rgibsongss
May 10 2007, 03:20 PM
Thanks Chris!
cskidmore
May 10 2007, 05:33 PM
Hello,
You're welcome.
Regards,
Chris
Bemac
May 10 2007, 05:42 PM
QUOTE(cskidmore @ May 10 2007, 12:03 PM)

Hello,
Interesting indicator... Please see the attached file. It will show up as "Pivot Points MA - Daily" in your Indicator Builder indicator listing.
Regards,
Chris
Hmmm... Interesting...
I just overlayed it on a TS I utilize and....
Mikey likes it.
The signals are generated by my TS {not the indicator posted} but I think I'm going to have to test if I can incorporate the Indicator into the TS
rgibsongss
May 11 2007, 12:48 PM
Chris,
How hard would it be to do the same indicator for the weekly and monthly pivot points (for use on longer time frames)?
Thanks
cskidmore
May 11 2007, 03:49 PM
Hello,
Attached are the Weekly and Monthly Pivot Point MA indicators. However, please note that depending on the settings used, you will need a *lot* of bars loaded in the chart to display these indicators.
Regards,
Chris
r1reddog
Feb 3 2008, 11:49 PM
is there anyway to get this indicator to just average the pivt point for the last 3 periods for whatever time frame im looking at say 15 min. basically if im looking at a 15 min chart i would like to see a moving average of the 15 min pivot point for the last 3, 15 minute periods. can anyone help me out with this?
Thanks in advanced
cskidmore
Feb 4 2008, 09:52 AM
Hello,
Pivot points are only calculated once per day so averaging 3 15 minute bars will simply give you the same point until the pivot point changes at the specified time each day.
Regards,
Chris
Raheem Suleman
Feb 12 2008, 10:32 AM
Hello Chris! Firstly, thank you very much for programming this indicator. Really appreciate it.
Is it possible to further modify this indicator? What I am trying to do here is to have a moving average cross over of the pivots in different time zone. For example, in a 15 min chart, you can calculate a pivot at the close of every 15 min candle stick (O+H+L/3) and then plot lets say a 3 and 5 period moving average on that chart. Is this possible please?
Thank you so much!
Raheem
cskidmore
Feb 12 2008, 10:47 AM
Hello,
QUOTE
What I am trying to do here is to have a moving average cross over of the pivots in different time zone. For example, in a 15 min chart, you can calculate a pivot at the close of every 15 min candle stick (O+H+L/3) and then plot lets say a 3 and 5 period moving average on that chart. Is this possible please?
This isn't the same as the indicator in this topic. However, it can be easily accomplished. In fact, you could make a few very simple modifications to the included MA Cross system in VT Trader and achieve the results you desire.
The only changes you'd need to make are to change the following lines:
MA1:=MOV (PrMA1, PerMA1, TpMA1);
MA2:=MOV (PrMA2, PerMA2, TpMA2);
... to this...
MA1:=MOV ((O+H+L/3), PerMA1, TpMA1);
MA2:=MOV ((O+H+L/3), PerMA2, TpMA2);
Then, you'd attach it to the chart and adjust the periods and type inputs as you require. The "Price" inputs would no longer be functioning so they could be ignored.
Regards,
Chris
taka666
Oct 26 2008, 10:24 AM
i can't seem to download the indicators.. and can i convert these indicators to .mq4 for MT4 platform?
cskidmore
Oct 26 2008, 10:41 AM
Hello,
You'll need to save the file(s) to your PC and then use VT Trader>Indicator Builder>Import button to import the indicators into VT Trader for use. Note: these indicators are only for VT Trader; they cannot be used in MT4. If you wan to use them in MT4, you'll need to recode them in MQL or find someone that can do that (or has already done that). However, these forums are not the place for MT4 and MQL discussions.
Regards,
Chris
dominator
Oct 26 2008, 12:21 PM
I'm having the same problem.
When I right click and 'save as', they are all called index.html
cskidmore
Oct 26 2008, 02:14 PM
Hmm. It looks like something maybe wrong with links system-side. I'll report the issue. Thank you.
Regards,
Chris
cruiser
Mar 11 2009, 05:23 AM
QUOTE
Posted Feb 13 2008, 02:47 AM
Hello,
What I am trying to do here is to have a moving average cross over of the pivots in different time zone. For example, in a 15 min chart, you can calculate a pivot at the close of every 15 min candle stick (O+H+L/3) and then plot lets say a 3 and 5 period moving average on that chart. Is this possible please?
This isn't the same as the indicator in this topic. However, it can be easily accomplished. In fact, you could make a few very simple modifications to the included MA Cross system in VT Trader and achieve the results you desire.
The only changes you'd need to make are to change the following lines:
MA1:=MOV (PrMA1, PerMA1, TpMA1);
MA2:=MOV (PrMA2, PerMA2, TpMA2);
... to this...
MA1:=MOV ((O+H+L/3), PerMA1, TpMA1);
MA2:=MOV ((O+H+L/3), PerMA2, TpMA2);
Then, you'd attach it to the chart and adjust the periods and type inputs as you require. The "Price" inputs would no longer be functioning so they could be ignored.
Regards,
Chris
I have tried to implement the above but was unable to project the MA line indicators in the price panel. How can I do this?
cskidmore
Mar 11 2009, 08:01 AM
Hello,
Your modified VT MA cross system is attached.
Regards,
Chris
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.