Announcement

Collapse
No announcement yet.

VIX add-on study - not CBOT VIX

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

  • VIX add-on study - not CBOT VIX

    Hello,

    I am a new Advanced GET User. I have searched files, spoken to an Advanced GET consultant, searched this forum and haven't come across the answer so here goes.

    I need help programming my own VIX study. I have no programming experience in Advanced GET so need to know

    1. How to put the following indicator into the correct code; and,
    2. How to add it as and add on study in Advanced GET

    Formula:

    (Maximum closing price out of last 22 candles - current low)/Maximum closing price out of last 22 candles) * -100.

    The answer is always negative(obviously).

    In Telecharts(Worden), the code is:

    ((((MAXC22-L)/MAXC22)*100)*-1

    any help would be apprecated.

  • #2
    i could be wrong, but is this what you are looking for? i attached a very basic efs that returns the formula you asked for, this is the format in javascript by the way:

    ((highest(22,close()) - low()) / highest(22,close())) * -100
    Attached Files

    Comment

    Working...
    X