Announcement

Collapse
No announcement yet.

Impostare indicatore prev high sulla base di un altro titolo

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Impostare indicatore prev high sulla base di un altro titolo

    Non sapendo programmare..ne capire l'inglese..chiedo chi puoi gentilmente aiutarmi a impostare un indicatore (prev high sulla base di un altro titolo )...ex : vorrei plottare PREV HIGH sul nq h7 con i valori del PREV HIGH del ND H7 ..

    Qua riporto il tabulato del programma


    function preMain() {
    setPriceStudy(true);
    setStudyTitle("Prev High (PH)");
    setCursorLabelName("PH");

    setDefaultBarStyle(PS_SOLID);
    setDefaultBarFgColor(Color.black);
    setDefaultBarThickness(2);
    setPlotType(PLOTTYPE_FLATLINES);
    }

    var bInit = false;
    var xHigh = null;

    function main() {

    if(isMonthly() || isWeekly())
    return;

    if(bInit == false){
    xHigh = high(inv("D"));
    bInit = true;
    }

    var vHigh = xHigh.getValue(-1);
    if(vHigh == null)
    return;

    return (vHigh);
    }
Working...
X