StockFetcher Forums · General Discussion · Pivot points<< >>Post Follow-up
xphenotype
2 posts
msg #124379
Ignore xphenotype
7/14/2015 7:52:44 AM

Does anybody know how to program pivot points? Ideally I would like to look at last years pivot during the current year.

Kevin_in_GA
4,599 posts
msg #124385
Ignore Kevin_in_GA
7/14/2015 5:21:37 PM

You can use R1, R2, S1, S2 etc by just typing them in, but you cannot get anything other than daily or weekly.

mahkoh
1,065 posts
msg #124390
Ignore mahkoh
7/16/2015 7:38:36 AM

symlist(spy)
set{x, date(yearend,close 200 day high)}
add column x

this will give you (in most cases) last year's high
from there you should be able to figure out the other inputs you need and calculate your pivot points

Below is a monthly pivotpoint filter that may help in case you get stuck.

set{mh,date(monthend,high 21 day high)}
set{ml,date(monthend,low 21 day low)}
set{cl,date(monthend,close)}


set{mp1,cl + mh}
set{mp,mp1 + ml}
set{mpp,mp/3}

set{mr1x,mpp*2}
set{mr1,mr1x - ml}
set{ms1,mr1x - mh}

set{mrange,mh - ml}
set{mr2,mpp + mrange}
set{ms2,mpp - mrange}

set{m2r,mrange*2}
set{mr3,mpp + m2r}
set{ms3,mpp - m2r}

draw price line at mr2
draw price line at ms1
draw price line at ms2
draw price line at mr1

xphenotype
2 posts
msg #124391
Ignore xphenotype
7/16/2015 8:53:50 AM

Great, thx!

Eman93
4,750 posts
msg #124821
Ignore Eman93
8/31/2015 9:30:41 PM

Weekly pivots seem important.

StockFetcher Forums · General Discussion · Pivot points<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.