♥ 0 |
Hi Pete, I am trying to plot a line from the pre-market open price but I only want it to display on the current day. #Pre-Market open def day = GetDay(); def PMfirstBar = day != day[1]; def PMOpen = if PMfirstBar then open else PMOpen[1]; plot PMO = PMOpen;
Marked as spam
|
Please log in to post questions.
Thanks Pete, really appreciate it!