Announcement

Collapse
No announcement yet.

Study Title Displaying...

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

  • Study Title Displaying...

    I dont want the study title to display here and thought I had used all the correct flags to get rid of it but it won't go away!

    You can see the great big "HISTO-ADV" in the study pane!!

    Here is the preMain code:

    function preMain() {

    setStudyTitle("HISTO-ADV");
    setShowCursorLabel(false);
    setShowTitleParameters(false);
    setPriceStudy(false);
    setCursorLabelName("HISTO",0);
    setDefaultBarFgColor(Color.yellow, 0);
    setPlotType(PLOTTYPE_HISTOGRAM,0);
    setDefaultBarThickness(2,0);

    and the Picture:
    Attached Files
    Last edited by mitboy; 02-22-2007, 03:13 AM.

  • #2
    mitboy,

    setStudyTitle("HISTO-ADV");
    is the line that controls displaying the title. It looks like you also have a large font size set on your chart.

    To display no title, just set the title to a string with one space, like this:
    setStudyTitle(" ");

    Steve

    Comment


    • #3
      mitboy,

      Alternately, if you don't want to see any of the different study titles in the chart, right click the chart, select Properties (chart properties) and uncheck Draw Study Titles

      Comment


      • #4
        Two Steves, certainly better than one!

        Thanks heaps - i thought I was just giving the study a title, not telling it to display it!

        Comment

        Working...
        X