Login Page - Create Account

Support Board


Date/Time: Sun, 05 May 2024 08:04:20 +0000



Feature Request: Link Time Zone to Chart Linking / Session Times.

View Count: 509

[2019-10-30 08:12:59]
ycomp - Posts: 274
Link Time Zone to Chart Linking / Session Times.

I think this would make sense since session times are irrelevant when the wrong time zone is being used on the chart.

I mean if you link session times on 2 charts then when it is applied to the other chart, the time zone would be changed as well to be the same as that of the source chart.
[2019-11-03 20:13:58]
T44 - Posts: 363
You can already set the time zone in the symbol configuration which seems to make the most sense.
[2019-11-03 20:16:05]
T44 - Posts: 363
If you are frequently changing symbols in a chart and want to update other settings, then an ASCIL study can work well - have it change the settings based on the value of sc.Symbol

e.g.

int IsES;
IsES = sc.Symbol.CompareNoCase("ES",2);
if (IsES == 0) {
  sc.StartTime1 = HMS_TIME(8,30,00);
  sc.EndTime1 = HMS_TIME(14,59,59);
  sc.StartTime2 = HMS_TIME(15,0,0);
  sc.EndTime2 = HMS_TIME(8,29,29);
}

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account