Announcement

Collapse
No announcement yet.

''convert '' from metestock to esignal

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

  • ''convert '' from metestock to esignal

    Acceleration Bands

    {For upper band}
    Upperband:=(H*(1+2*((((H-L)/((H+L)/2))*1000)*0.001)));
    Mov(Upperband, 20, S );

    {For lower band}
    Lowerband:=(L*(1-2*((((H-L)/((H+L)/2))*1000)*0.001)));
    Mov(Lowerband, 20, S );

  • #2
    mar123
    If you search the forum for the keyword Acceleration you will find that there are several formulas already available
    Alex


    Originally posted by mar123 View Post
    Acceleration Bands

    {For upper band}
    Upperband:=(H*(1+2*((((H-L)/((H+L)/2))*1000)*0.001)));
    Mov(Upperband, 20, S );

    {For lower band}
    Lowerband:=(L*(1-2*((((H-L)/((H+L)/2))*1000)*0.001)));
    Mov(Lowerband, 20, S );

    Comment

    Working...
    X