Login Page - Create Account

Support Board


Date/Time: Wed, 27 Nov 2024 14:44:31 +0000



Post From: Color Bar alerts

[2023-07-19 01:11:58]
Sawtooth - Posts: 4120
Is there any chance we can refer to a specific candle in time, for example, price is higher than the 9.30 candle
You could do it by creating a persistent value of the 9:30 candle High, using the Spreadsheet Formula study, with a formula like this:
=IF(BARTIME=TIME(9,30,0),H,ID1.SG1[-1])
where ID1 is the Spreadsheet Formula study.

Then reference the Spreadsheet Formula study in a Color Bar Based On Alert Condition study formula, like this:
=H>ID1.SG1