Hi @SleepyZ
Need your help. I am trying to draw vertical line at 10 AM (PST). When I use the code, it draws vertical lines every day.
1. I would like to draw vertical line, only for today.
2. Option of adding vertical line and text.
2. In the input, I am specifying 1000 as 10 AM for PST time frame. Is it possible to automate the time at any time zone (like CST, EST, PST)
Thanks for your help and time
Need your help. I am trying to draw vertical line at 10 AM (PST). When I use the code, it draws vertical lines every day.
1. I would like to draw vertical line, only for today.
2. Option of adding vertical line and text.
2. In the input, I am specifying 1000 as 10 AM for PST time frame. Is it possible to automate the time at any time zone (like CST, EST, PST)
Thanks for your help and time
Code:
Input vertical_line = yes;
input text = yes;
input targetTime1000 = 1000;
def targetBar1000 = SecondsFromTime(targetTime1000) == 0;
AddVerticalLine(targetBar1000, "volatile", Color.WHITE);