Announcement

Collapse
No announcement yet.

Tick vs symbol

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

  • Tick vs symbol

    Would someone so kindly look at this efs and see where I goofed? Also can S/R be plotted on the tick for intraday.

    Fibbgann
    Attached Files
    Last edited by FibbGann; 11-07-2003, 07:38 AM.
    Excellent book on JavaScript for beginners

  • #2
    FibbGann
    Not sure but in Line 25 I would write
    vSym = cSym;
    Alex

    Comment


    • #3
      Sorry, that was a blank thought. What was not working was the change of colors when the study crosses the median of zero?
      Alex, I have been searching the site here for an efs that plots the MA of the trin/trinq. If you know where one might be give me a heads ups.

      Thanks,

      Fibbgann
      Excellent book on JavaScript for beginners

      Comment


      • #4
        Just built my MA of the trin/trinq. Still having trouble with the color change in the compare.efs?

        Fibbgann
        Excellent book on JavaScript for beginners

        Comment


        • #5
          FibbGann
          Again I am not sure this is the result you want but if you substitute the code after Line 32 with the following it does color the plot
          Alex

          if (vSym != null)
          var b = close(0, 1, vSym);

          if(b>0)
          setBarFgColor(Color.lime);
          if(b<0)
          setBarFgColor(Color.red);

          return b;
          }

          Comment

          Working...
          X