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

Discussion in 'Strategy Building' started by Jana, Aug 9, 2003.

  1. Jana

    Jana

    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
     
  2. Jana

    Jana

    Is it possible to close this alert automatically after e.g. 1 minute?
     
  3. telozo

    telozo

    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)
     
  4. telozo

    telozo