HELP
Basic pivot points formula I am after is :
For the pivot points for the next trading day, that can be viewed on intraday and daily charts.
High to High and Low to Low
HH = (high today - high Yesterday)+high today
LL = (Low today - low Yesterday)+low today
High to low and low to high
HL = (high today - low Yesterday)+high today
LH = (low today - high Yesterday)+low today
The above are the basic ones, the next are a bit new...
High to High parallel and Low to Low Parallel
HHP = (high today - high Yesterday)+low today
LLP = (Low today - low Yesterday)+high today
High to High parallel inverted and Low to Low Parallel inverted
HHPI = (high today - high Yesterday)-low today
LLPI = (Low today - low Yesterday)-high today.
These calculations are to be based on Daily, weekly and monthly high and low data for the next trading period respectively.
So if pivot was based on daily data it would be called HHD, if based on weekly then HHW, monthly HHM.
If you wish to program this for all to use that would be great. If so could you consider a Command button control in the chart to allow turning on and off pivots for daily, weekly and monthly respectively.
So any chance of some code, thanks
Basic pivot points formula I am after is :
For the pivot points for the next trading day, that can be viewed on intraday and daily charts.
High to High and Low to Low
HH = (high today - high Yesterday)+high today
LL = (Low today - low Yesterday)+low today
High to low and low to high
HL = (high today - low Yesterday)+high today
LH = (low today - high Yesterday)+low today
The above are the basic ones, the next are a bit new...
High to High parallel and Low to Low Parallel
HHP = (high today - high Yesterday)+low today
LLP = (Low today - low Yesterday)+high today
High to High parallel inverted and Low to Low Parallel inverted
HHPI = (high today - high Yesterday)-low today
LLPI = (Low today - low Yesterday)-high today.
These calculations are to be based on Daily, weekly and monthly high and low data for the next trading period respectively.
So if pivot was based on daily data it would be called HHD, if based on weekly then HHW, monthly HHM.
If you wish to program this for all to use that would be great. If so could you consider a Command button control in the chart to allow turning on and off pivots for daily, weekly and monthly respectively.
So any chance of some code, thanks
Comment