Announcement

Collapse
No announcement yet.

Access to the setShowTitleParameters() String

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

  • Access to the setShowTitleParameters() String

    Hi,

    Is there a way to access the string of parameters settings that setShowTitleParameters() displays.

    I would like to store that string in an external file for later reference.


    Thanks
    "Make it a great day"
    [email protected]

  • #2
    perfectinglife
    I don't believe it can be accessed but you could easily create your own. For example using the customMA.efs that is in the EFS2 Custom folder you could add the following in main and it would return all the settings in the Formula Output window
    Alex

    PHP Code:
    if(getBarState()==BARSTATE_ALLBARS){
            var 
    Settings = (Type+","+Length+","+Source+","+Symbol+","+Interval+","+Offset+","+Params);
            
    debugPrintln(Settings)
        } 

    Comment


    • #3
      Thanks Alex,

      That is kinda what I figured I would have to do, but I thought I would ask if there was an easier way.

      Thanks so much for your help.
      "Make it a great day"
      [email protected]

      Comment

      Working...
      X