EL-How to plot the numeric-value in to alert

of highd(2)

This is a part of my formula:

Plot1(HighD(2),"HighD2");
Alert(" Yesterday`s high for " + GetSymbolName);
end


I want the Numeric-Value e.g. of the ES U3 highd(2) plotted in the alert-Window?

thanks
 
Alert writes the symbol name, so you don't have to include it.
To write a numerical value, such as highd(2), you can use the function NumToStr, to convert it to a string.
Please be aware that highd(2) is the high from two days ago. If you want yesterday's high you should use highd(1)
 
Back
Top