Login Page - Create Account

Support Board


Date/Time: Sun, 19 May 2024 08:35:42 +0000



Post From: indicator update

[2015-03-19 14:10:07]
Sawtooth - Posts: 4000
You can easily do this with the Spreadsheet Study study.

Hide the indicator study, and add the Spreadsheet Study study.
Set the Chart Region to 1, set the Number of Rows to 10, and use this formula in cell K3:
=IF(ROW()=3,0,AA3)
where the indicator is in column AA.

If you want the previous indicator value to extend to the current bar, use this formula instead:
=IF(ROW()=3,AA4,AA3)