Announcement

Collapse
No announcement yet.

GetElliottStudy UP or DOWN Wave ?

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

  • GetElliottStudy UP or DOWN Wave ?

    Hello

    var wave = elliott.getValue(GetElliottStudy.WAVE);

    how identify wave = UP or DOWN ???

    if -4 Down wave 4 ?
    if +4 up wave 4 ?

    Thanks

    MfG
    alex

  • #2
    That is correct.

    G
    Garth

    Comment


    • #3
      That is correct.
      hmmm.. ????


      have eSignal and Andvand GET Studie one BUG ? then

      ---------------------------------------------------------------------------------
      var elliott = new GetElliottStudy(300, 0, 50, 5, 35, 0);
      var wave = elliott.getValue(GetElliottStudy.WAVE);

      if(wave == -2) {
      drawTextRelative(0, 0, 'Wave 2 down', Color.white, Color.green,
      Text.RELATIVETOBOTTOM | Text.BOLD, "Courier", 12 );
      }
      ---------------------------------------------------------------------------------

      i have Real 5x Down Wave 2 but drawTextRelative show =

      3x Down Wave 2 !!!


      HELP me Please

      Thanks

      sorry my English is not good i come from germany

      mfg
      alex

      Comment


      • #4
        You have to provide a unqiue label for each drawxxx() command you issue. If you don't, eSignal will only draw the most recent.

        It looks like you are suppling the same label for each drawtext.

        Garth
        Garth

        Comment

        Working...
        X