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 Jonafare, 12-06-2012, 03:48 PM
        5 responses
        3,984 views
        0 likes
        Last Post rene69851  
        Started by Fitspressorest, Today, 01:38 PM
        0 responses
        2 views
        0 likes
        Last Post Fitspressorest  
        Started by Jonker, Today, 01:19 PM
        0 responses
        2 views
        0 likes
        Last Post Jonker
        by Jonker
         
        Started by futtrader, Today, 01:16 PM
        0 responses
        7 views
        0 likes
        Last Post futtrader  
        Started by Segwin, 05-07-2018, 02:15 PM
        14 responses
        1,791 views
        0 likes
        Last Post aligator  
        Working...
        X