Announcement

Collapse
No announcement yet.

X ALEXIS!! pro activity

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

  • X ALEXIS!! pro activity

    salve chiedo gentilmente il vostro aiuto per modificare la seguente formula , in modo tale che il valore CLOSE , che verra sottratto all open , SIA QUELLO RELATIVO ALLA BARRA PRECEDENTE ( rispetto a quella dell open ) ; ad esempio nel caso di un grafico daily , il close sia relativo alla giornata di ieri, mentre l open sia relativo all apertura stessa di oggi.
    grazie mille!!


    var vSMA14 = new MAStudy(14, 0, "Close", MAStudy.SIMPLE);
    var vSMA14_of_Open = new MAStudy(14, 0, "Open", MAStudy.SIMPLE);
    var vLastAlert = -1;

    function preMain() {

    setPriceStudy(false);
    setStudyTitle("14movC-O");
    setCursorLabelName("14maC-O", 0);
    //setCursorLabelName("14maC-Ob", 1);
    setDefaultBarStyle(PS_SOLID, 0);
    setDefaultBarStyle(PS_SOLID, 1);
    setDefaultBarFgColor(Color.green, 0);
    setDefaultBarFgColor(Color.red, 1);
    setDefaultBarThickness(2, 0);
    setDefaultBarThickness(1, 1);
    setPlotType(PLOTTYPE_LINE, 0);
    setPlotType(PLOTTYPE_LINE, 1);
    }

    function main() {

    return (
    vSMA14.getValue(MAStudy.MA)-
    vSMA14_of_Open.getValue(MAStudy.MA)
    );
    }

  • #2
    paoly2007
    Sostituisci vSMA14.getValue(MAStudy.MA) con vSMA14.getValue(MAStudy.MA,-1)
    Alex

    Comment

    Working...
    X