Announcement

Collapse
No announcement yet.

VIX as a Formula

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

  • VIX as a Formula

    Is it possible to draw VIX on a chart as a formula like any other?

  • #2
    PHP Code:
    function preMain() {
        
    setCursorLabelName("Vix"0);
        
    setDefaultBarFgColor(Color.blue,0);
    }

    function 
    main() {
       
        return 
    getValue("close","$VIX");

    Attached Files

    Comment


    • #3
      vix

      xygeek:
      thanks a lot for the quick response.

      Comment

      Working...
      X