Announcement

Collapse
No announcement yet.

Volume Up & Down Separate Histogram

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

  • Volume Up & Down Separate Histogram

    Hello, Is there an .efs that plots the volume up separate from the volume down in a histogram fashion? Below shows the combination of a Vol Up and a Vol Down in tradestation...



    I would like to have same thing in eSignal if it is available. I looked at Bid/Ask Analysis.efs... and that is not what I am looking for. It also needs to calculate at the close of interval.. not tick by tick. Would also be good if it would plot historically besides intraday.

    Thanks Very Much.

  • #2
    Post the file...

    please post the file in your example and we can probably modify it to do what you want..

    B
    Brad Matheny
    eSignal Solution Provider since 2000

    Comment


    • #3
      These are 2 separate TS8 studies... .eld's.

      Down Volume

      PHP Code:
      if BarType <= 1 then ie, if tick/minute data }
          
      Plot1DownTicks"VolDn" ) ; 

      Up Volume

      PHP Code:
      if BarType <= 1 then ie, if tick/minute data }
          
      Plot1UpTicks"VolUp" ) ; 
      I overlayed them on top of each other in the same fashion that esignal can overlay an indicator over another indicator. Adjusting the thickness of the histogram lines would be very helpful as well.

      Thanks
      Last edited by Nereus; 05-20-2005, 01:23 PM.

      Comment

      Working...
      X