There is a post on June 19, 2014 09:17AM at this URL: https://researchtrade.com/forum/read.php?7,2258,page=7
That shows this script:
plot Pivot = (high(period = "day" )[1] + low(period = "day" )[1]) / 2;
Pivot.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
Pivot.SetDefaultColor(Color.ORANGE);
Pivot.SetLineWeight(2);
Which displays ... (questions to follow)
Questions:
Why is the line only plotted across one day (open of day 1 to open of day 2) ?
The plot statement says, at least to me, plot this Y value. Why does the line not extend for 6 days, 10 days, ... til the end of time?
I'm sure there's a good reason.
That shows this script:
plot Pivot = (high(period = "day" )[1] + low(period = "day" )[1]) / 2;
Pivot.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
Pivot.SetDefaultColor(Color.ORANGE);
Pivot.SetLineWeight(2);
Which displays ... (questions to follow)
Questions:
Why is the line only plotted across one day (open of day 1 to open of day 2) ?
The plot statement says, at least to me, plot this Y value. Why does the line not extend for 6 days, 10 days, ... til the end of time?
I'm sure there's a good reason.