Are Range Bars available in version 7.9 ? If not, will they be?
Announcement
Collapse
No announcement yet.
Range Bars
Collapse
X
-
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
-
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
Comment
-
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
Comment