Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plot bar close price

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

    Plot bar close price

    Hi Adviser,

    I would like to develop a strategy which plot a dot when 5 min bar close equal to certain price. For example when 5 min bar equal to price of 14, I would like the system plot a dot. Please correct me if I wrote wrong

    // Condition set 1
    if (Close[1] + 0.16 * TickSize == MyInput0)
    {
    DrawDot("My dot" + CurrentBar, false, 0, 0, Color.Blue)

    Any comment is appreciate.

    Thanks,

    Remon

    #2
    Your logic would seem ok, given MyInput0 is a value that would match the formula you've created. I'd suggest always making liberal use of Print() statements to ensure the values you get are values you expect.

    In terms of hte DrawDot, you're passing a value of 0, which likely does not display on your chart. You'll want to use a relative bar value to ensure that it's drawing at a price level you can see:

    DrawDot("My dot" + CurrentBar, false, 0, Low[0] - TickSize, Color.Blue)
    MatthewNinjaTrader Product Management

    Comment


      #3
      Thanks for your support,

      I am kind new to the system. Can you tell me how to making liberal use of Print() statements?

      Thanks,

      Comment


        #4
        You can use the Print() method which will output different values to the Output window. Information on this can be found below:



        For example you can use:

        Print(Close[1] + 0.16 * TickSize);
        Print(MyInput0);

        Which should give you the values at that time. You can break it up even further and have a seperate Print(Close[1]) to ensure the bar value is what you expect before you at the 0.16 * TickSize, etc.
        MatthewNinjaTrader Product Management

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by mattbsea, Today, 05:44 PM
        0 responses
        4 views
        0 likes
        Last Post mattbsea  
        Started by RideMe, 04-07-2024, 04:54 PM
        6 responses
        31 views
        0 likes
        Last Post RideMe
        by RideMe
         
        Started by tkaboris, Today, 05:13 PM
        0 responses
        2 views
        0 likes
        Last Post tkaboris  
        Started by GussJ, 03-04-2020, 03:11 PM
        16 responses
        3,282 views
        0 likes
        Last Post Leafcutter  
        Started by WHICKED, Today, 12:45 PM
        2 responses
        20 views
        0 likes
        Last Post WHICKED
        by WHICKED
         
        Working...
        X