Login Page - Create Account

Support Board


Date/Time: Sun, 12 May 2024 06:20:30 +0000



Post From: Chart recalculation setting

[2019-07-29 01:24:28]
Sawtooth - Posts: 3995
is there a way to force the chart to recalculate at a certain time to make sure it displays?
1. Use the Chart Recalculation - Periodic study. (FYI, this study does not recalculate when using Replay Chart.)

I just want to have it displayed over the first 30 mins bars.
2. On the spreadsheet study, use a formula to filter when the line is displayed, like this:
=IF(AND(TODAY()=INT(A3),S3>0),S3,0)
where S3 is the formula that draws the upper band. This will limit its display to the current day.
Repeat this for the lower band.
Since you are using a spreadsheet study to draw the bands, you could combine the formulas into one column per side.