Announcement

Collapse
No announcement yet.

RSI w/ Bands question

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

  • RSI w/ Bands question

    Could someone help me create a band to add to this indy that calulates the difference between the upper BB and Lower BB.
    Attached Files

  • #2
    var vLower = study2.getValue(BollingerStudy.LOWER);
    vDiff=study2.getValue(BollingerStudy.UPPER)-study2.getValue(BollingerStudy.LOWER);


    return new Array(vUpper, vBasis, vLower, vRSI, vDiff);

    Is what I would do

    Comment

    Working...
    X