Support Board
Date/Time: Sun, 24 Nov 2024 08:00:49 +0000
Post From: Display multiple selected study values at specific points in time
[2024-06-20 19:57:02] |
John - SC Support - Posts: 36238 |
It would be easiest to do this with a custom study, this way you could capture the pointer at a specific location to give you the value you want. Refer to the following: Advanced Custom Study Interaction With Menus, Control Bar Buttons, Pointer Events List of Third Party Sierra Chart Study and System Programmers But in terms of a way to do this without programming, one way would be to use the "Date-Time Line" to establish the point you want, and then use the Spreadsheet Study to get the value from that point to the current bar so you can easily reference it for an alert. Here are the specifics: - Add the RSI study to the chart. - Add the "Date-Time Line" study and place the "Date-Time Line" where you want. - Add the "Spreadsheet Study" to the chart and enter the following: -- Cell K3: =IF(ID2.SG1@3 <> 0, ID1.SG1@3, 0) -- Cell L3: =MOSTRECENTNONZEROVALUE($K$3:$K$2000) Where ID2 is the ID of the "Date-Time Line" study. ID1 is the ID of the RSI study. You may need to change the range of the values in the MOSTRECENTNONZEROVALUE() function depending on how far back you are locating the point. You can then use the subgraph for the L column to create your alert. For the most reliable, advanced, and zero cost futures order routing, use the Teton service: Sierra Chart Teton Futures Order Routing |