Announcement

Collapse
No announcement yet.

current pivot series only

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

  • current pivot series only

    Is there a way on eSignal to have the current pivot series data plotted (say the monthly pivot series) where the lines from prior months are no longer there? The lines from prior months make it difficult to read a longer term daily chart so I am trying to figure out a way to clean up the chart so it only has the current lines.

    Thanks in advance for your reply.

  • #2
    Re: current pivot series only

    ralex
    You can easily do that by implementing the same routine I posted in this thread on a similar topic and slightly modifying it by replacing the following two lines
    var sTime = (xTime.getMonth()+1+"/"+xTime.getDate()+"/"+xTime.getFullYear());
    var sToday = (xDate.getMonth()+1+"/"+xDate.getDate()+"/"+xDate.getFullYear());

    with the following
    var sTime = (xTime.getMonth()+1+"/"+xTime.getFullYear());
    var sToday = (xDate.getMonth()+1+"/"+xDate.getFullYear());

    This will force the efs you modify to plot only on the current month
    Alex


    Originally posted by ralex
    Is there a way on eSignal to have the current pivot series data plotted (say the monthly pivot series) where the lines from prior months are no longer there? The lines from prior months make it difficult to read a longer term daily chart so I am trying to figure out a way to clean up the chart so it only has the current lines.

    Thanks in advance for your reply.

    Comment

    Working...
    X