Announcement

Collapse
No announcement yet.

Range Bars

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

  • Range Bars

    Are Range Bars available in version 7.9 ? If not, will they be?

  • #2
    grainmerchant
    Range bars are not available in 7.9. Don't know what plans (if any) eSignal may have with regards to this but you can send in your suggestion to [email protected]
    Alex

    Comment


    • #3
      Alex
      (1) below is a standard part of an efs
      var fp1c = new FunctionParameter("TEXT1", FunctionParameter.STRING);
      fp1c.setName("TEXT1?");
      fp1c.addOption("_");
      fp1c.addOption("BUY LINE");
      fp1c.addOption("SELL LINE");
      fp1c.addOption("SHORT LINE");
      fp1c.addOption("COVER LINE");
      fp1c.addOption("Weekly Has Gone Bullish");
      fp1c.addOption("Weekly Has Gone Bearish");
      fp1c.addOption("RED RETRACE");
      fp1c.addOption("WEEKLY BUY");
      fp1c.addOption("WEEKLY SELL");
      fp1c.addOption("WEEKLY RETRACE");
      fp1c.addOption("DAILY BUY");
      fp1c.addOption("DAILY SELL");
      fp1c.addOption("DAILY RETRACE");
      fp1c.setDefault("_"); //Edit this value to set a new default

      (2) Question?
      Is there a command that I could insert(TYPE)
      "any text I am during the time of running" ?
      (3) Not "pre text" as above, but "new text which would be different for each situation" ?

      Thanks in advance
      Larry Dudash
      HAL at
      http://share.esignal.com/groupconten...r=&groupid=549

      Comment


      • #4
        Larry
        Unless I misunderstood what you are asking you can easily add an option in the Function Parameter that would just include "". Using your own example it would be like
        fp1c.addOption("");
        This would allow you to insert any text on the fly through Edit Studies
        Alex

        Comment


        • #5
          Alex
          Thanks !!!
          That was very easy.
          Larry Dudash
          HAL at
          http://share.esignal.com/groupconten...r=&groupid=549

          Comment

          Working...
          X