[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Previous Day High/Low/Close



PureBytes Links

Trading Reference Links

> I am searching everywhere for an ela file that will plot the
> previous day's high/low/close on an intraday chart.  

I haven't seen anyone suggest the simplest answer:

plot1(HighD(1), "High");
plot2(LowD(1), "Low");
plot3(CloseD(1), "Close");

Or am I missing something obvious?
Gary