go-chart/market_hours_range.go

182 lines
5.3 KiB
Go
Raw Normal View History

2016-07-22 07:09:09 +02:00
package chart
import (
"fmt"
"time"
)
2016-07-23 20:50:30 +02:00
// MarketHoursRange is a special type of range that compresses a time range into just the
2016-07-22 07:09:09 +02:00
// market (i.e. NYSE operating hours and days) range.
2016-07-23 20:50:30 +02:00
type MarketHoursRange struct {
Min time.Time
Max time.Time
MarketOpen time.Time
MarketClose time.Time
2016-08-01 01:54:09 +02:00
HolidayProvider HolidayProvider
2016-07-23 20:50:30 +02:00
2016-07-27 09:20:43 +02:00
ValueFormatter ValueFormatter
2016-07-22 07:09:09 +02:00
Domain int
}
2016-08-01 09:50:32 +02:00
// GetTimezone returns the timezone for the market hours range.
func (mhr MarketHoursRange) GetTimezone() *time.Location {
return mhr.GetMarketOpen().Location()
}
2016-07-22 07:22:22 +02:00
// IsZero returns if the range is setup or not.
2016-07-23 20:50:30 +02:00
func (mhr MarketHoursRange) IsZero() bool {
2016-07-22 07:22:22 +02:00
return mhr.Min.IsZero() && mhr.Max.IsZero()
}
2016-07-22 07:09:09 +02:00
// GetMin returns the min value.
2016-07-23 20:50:30 +02:00
func (mhr MarketHoursRange) GetMin() float64 {
2016-10-21 00:21:52 +02:00
return Time.ToFloat64(mhr.Min)
2016-07-22 07:09:09 +02:00
}
// GetMax returns the max value.
2016-07-23 20:50:30 +02:00
func (mhr MarketHoursRange) GetMax() float64 {
2016-10-21 00:21:52 +02:00
return Time.ToFloat64(mhr.GetEffectiveMax())
2016-07-27 17:21:05 +02:00
}
// GetEffectiveMax gets either the close on the max, or the max itself.
func (mhr MarketHoursRange) GetEffectiveMax() time.Time {
2016-08-01 01:54:09 +02:00
maxClose := Date.On(mhr.MarketClose, mhr.Max)
2016-07-27 17:21:05 +02:00
if maxClose.After(mhr.Max) {
return maxClose
}
return mhr.Max
2016-07-22 07:09:09 +02:00
}
// SetMin sets the min value.
2016-07-23 20:50:30 +02:00
func (mhr *MarketHoursRange) SetMin(min float64) {
2016-10-21 00:21:52 +02:00
mhr.Min = Time.FromFloat64(min)
2016-08-01 09:50:32 +02:00
mhr.Min = mhr.Min.In(mhr.GetTimezone())
2016-07-22 07:09:09 +02:00
}
// SetMax sets the max value.
2016-07-23 20:50:30 +02:00
func (mhr *MarketHoursRange) SetMax(max float64) {
2016-10-21 00:21:52 +02:00
mhr.Max = Time.FromFloat64(max)
2016-08-01 09:50:32 +02:00
mhr.Max = mhr.Max.In(mhr.GetTimezone())
2016-07-22 07:09:09 +02:00
}
// GetDelta gets the delta.
2016-07-23 20:50:30 +02:00
func (mhr MarketHoursRange) GetDelta() float64 {
2016-07-27 17:21:05 +02:00
min := mhr.GetMin()
max := mhr.GetMax()
2016-07-22 07:09:09 +02:00
return max - min
}
// GetDomain gets the domain.
2016-07-23 20:50:30 +02:00
func (mhr MarketHoursRange) GetDomain() int {
2016-07-22 07:09:09 +02:00
return mhr.Domain
}
// SetDomain sets the domain.
2016-07-23 20:50:30 +02:00
func (mhr *MarketHoursRange) SetDomain(domain int) {
2016-07-22 07:09:09 +02:00
mhr.Domain = domain
}
2016-07-24 00:35:49 +02:00
// GetHolidayProvider coalesces a userprovided holiday provider and the date.DefaultHolidayProvider.
2016-08-01 01:54:09 +02:00
func (mhr MarketHoursRange) GetHolidayProvider() HolidayProvider {
2016-07-24 00:35:49 +02:00
if mhr.HolidayProvider == nil {
2016-08-01 01:54:09 +02:00
return defaultHolidayProvider
2016-07-24 00:35:49 +02:00
}
return mhr.HolidayProvider
}
2016-08-01 01:54:09 +02:00
// GetMarketOpen returns the market open time.
func (mhr MarketHoursRange) GetMarketOpen() time.Time {
if mhr.MarketOpen.IsZero() {
return NYSEOpen
}
return mhr.MarketOpen
}
// GetMarketClose returns the market close time.
func (mhr MarketHoursRange) GetMarketClose() time.Time {
if mhr.MarketClose.IsZero() {
return NYSEClose
}
return mhr.MarketClose
}
2016-07-24 00:35:49 +02:00
// GetTicks returns the ticks for the range.
// This is to override the default continous ticks that would be generated for the range.
2016-08-01 01:54:09 +02:00
func (mhr *MarketHoursRange) GetTicks(r Renderer, defaults Style, vf ValueFormatter) []Tick {
times := Sequence.MarketHours(mhr.Min, mhr.Max, mhr.GetMarketOpen(), mhr.GetMarketClose(), mhr.GetHolidayProvider())
timesWidth := mhr.measureTimes(r, defaults, vf, times)
if timesWidth <= mhr.Domain {
return mhr.makeTicks(vf, times)
}
2016-08-01 09:50:32 +02:00
2016-08-01 01:54:09 +02:00
times = Sequence.MarketHourQuarters(mhr.Min, mhr.Max, mhr.GetMarketOpen(), mhr.GetMarketClose(), mhr.GetHolidayProvider())
timesWidth = mhr.measureTimes(r, defaults, vf, times)
if timesWidth <= mhr.Domain {
return mhr.makeTicks(vf, times)
2016-07-24 00:35:49 +02:00
}
2016-08-01 09:50:32 +02:00
times = Sequence.MarketDayCloses(mhr.Min, mhr.Max, mhr.GetMarketOpen(), mhr.GetMarketClose(), mhr.GetHolidayProvider())
timesWidth = mhr.measureTimes(r, defaults, vf, times)
if timesWidth <= mhr.Domain {
return mhr.makeTicks(vf, times)
}
times = Sequence.MarketDayAlternateCloses(mhr.Min, mhr.Max, mhr.GetMarketOpen(), mhr.GetMarketClose(), mhr.GetHolidayProvider())
timesWidth = mhr.measureTimes(r, defaults, vf, times)
if timesWidth <= mhr.Domain {
return mhr.makeTicks(vf, times)
}
times = Sequence.MarketDayMondayCloses(mhr.Min, mhr.Max, mhr.GetMarketOpen(), mhr.GetMarketClose(), mhr.GetHolidayProvider())
timesWidth = mhr.measureTimes(r, defaults, vf, times)
if timesWidth <= mhr.Domain {
return mhr.makeTicks(vf, times)
}
return GenerateContinuousTicks(r, mhr, false, defaults, vf)
2016-08-01 01:54:09 +02:00
}
func (mhr *MarketHoursRange) measureTimes(r Renderer, defaults Style, vf ValueFormatter, times []time.Time) int {
defaults.GetTextOptions().WriteToRenderer(r)
var total int
for index, t := range times {
timeLabel := vf(t)
2016-07-24 00:35:49 +02:00
2016-08-01 01:54:09 +02:00
labelBox := r.MeasureText(timeLabel)
total += labelBox.Width()
if index > 0 {
total += DefaultMinimumTickHorizontalSpacing
}
2016-07-24 22:48:10 +02:00
}
2016-08-01 01:54:09 +02:00
return total
}
2016-07-31 06:34:41 +02:00
2016-08-01 01:54:09 +02:00
func (mhr *MarketHoursRange) makeTicks(vf ValueFormatter, times []time.Time) []Tick {
ticks := make([]Tick, len(times))
for index, t := range times {
ticks[index] = Tick{
2016-10-21 00:21:52 +02:00
Value: Time.ToFloat64(t),
2016-08-01 01:54:09 +02:00
Label: vf(t),
}
}
2016-07-24 00:35:49 +02:00
return ticks
}
2016-07-23 20:50:30 +02:00
func (mhr MarketHoursRange) String() string {
2016-08-01 09:50:32 +02:00
return fmt.Sprintf("MarketHoursRange [%s, %s] => %d", mhr.Min.Format(time.RFC3339), mhr.Max.Format(time.RFC3339), mhr.Domain)
2016-07-22 07:09:09 +02:00
}
// Translate maps a given value into the ContinuousRange space.
2016-07-23 20:50:30 +02:00
func (mhr MarketHoursRange) Translate(value float64) int {
2016-10-21 00:21:52 +02:00
valueTime := Time.FromFloat64(value)
2016-08-01 01:54:09 +02:00
valueTimeEastern := valueTime.In(Date.Eastern())
totalSeconds := Date.CalculateMarketSecondsBetween(mhr.Min, mhr.GetEffectiveMax(), mhr.GetMarketOpen(), mhr.GetMarketClose(), mhr.HolidayProvider)
valueDelta := Date.CalculateMarketSecondsBetween(mhr.Min, valueTimeEastern, mhr.GetMarketOpen(), mhr.GetMarketClose(), mhr.HolidayProvider)
2016-07-27 09:34:10 +02:00
translated := int((float64(valueDelta) / float64(totalSeconds)) * float64(mhr.Domain))
2016-07-23 07:43:27 +02:00
return translated
2016-07-22 07:09:09 +02:00
}