Announcement

Collapse
No announcement yet.

Plot DOT close

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

  • Plot DOT close

    I am trying to plot DOT for the close of the bar but for some reason I get +

    where is the mistake please


    function preMain() {
    setPriceStudy(true);
    setStudyTitle("DOT Close");

    setColorPriceBars(true);
    setDefaultPriceBarColor(Color.black);
    setPlotType(PLOTTYPE_DOT, 0);
    setDefaultBarThickness(3, 0);


    }

    function main() {

    var vClose = close(0);

    //setBarFgColor(Color.Black,0);

    return vClose;
    }

  • #2
    really what I want to do is make a BAR with High LOW and CLOSE with the Close being a DOT

    if that is possible

    Comment


    • #3
      Re: Plot DOT close

      richbois
      Even though the plot type is called DOT it actually is a cross in version 10.x [and earlier].
      Try using CIRCLE as the plot type
      Alex


      Originally posted by richbois
      I am trying to plot DOT for the close of the bar but for some reason I get +

      where is the mistake please


      function preMain() {
      setPriceStudy(true);
      setStudyTitle("DOT Close");

      setColorPriceBars(true);
      setDefaultPriceBarColor(Color.black);
      setPlotType(PLOTTYPE_DOT, 0);
      setDefaultBarThickness(3, 0);


      }

      function main() {

      var vClose = close(0);

      //setBarFgColor(Color.Black,0);

      return vClose;
      }

      Comment


      • #4
        Re: Re: Plot DOT close

        Originally posted by Alexis C. Montenegro
        richbois
        Even though the plot type is called DOT it actually is a cross in version 10.x [and earlier].
        Try using CIRCLE as the plot type
        Alex
        Thank you Alex that did the trick

        Comment


        • #5
          Re: Re: Re: Plot DOT close

          richbois
          You are welcome
          Alex


          Originally posted by richbois
          Thank you Alex that did the trick

          Comment

          Working...
          X