Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plotting in "future" ...

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

    Plotting in "future" ...

    Hello,
    In my indicator, when executing OnBarUpdate(), I catch some values for plotting. However I don’t want to plot these value at Value[0] (or something like at Value[0+k]). The location (bar index) of the bar where I want to plot the values, hasn’t yet been reach in OnBarUpdate() at that point.

    1. Do I have to wait for CurrentBar to reach the bar index I’m waiting for, and then do Value[0] = … or
    2. .. can I do something like Value(myOwnBarIndex) = …

    Thank you/Anders

    #2
    Hello AndBro,

    Thank you for your post.

    You would use a negative index, for example:
    • Plot0[-5] = Close[0]; // this would set the Close value to the plot 5 bars later.

    Comment


      #3
      Hello Patrick, I tried to use a negative “barsago”, it did compile but I got a runtime error. Anyway, I found out a very simple solution and just wait for CurrentBar to reach a certain value, and then I do the plotting.
      My problem is solved, and we can drop this issue now. Thank you. /Anders

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      81 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      46 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      169 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      101 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      175 views
      2 likes
      Last Post CaptainJack  
      Working...
      X