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 Mindset, 04-21-2026, 06:46 AM
        0 responses
        110 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        156 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        74 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        125 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        79 views
        0 likes
        Last Post PaulMohn  
        Working...
        X