Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Drawing fib levels from another time frame

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

    Drawing fib levels from another time frame

    HI i want to plot fib levels on primary but from higher time frame.
    this code complains cannot apply [] to an expression of type int. How do i properly set int bars ago from another timmeframe?

    double lLongLevel = Closes[1][0];
    double hLongLevel = Opens[1][0];


    Draw.FibonacciRetracements(this, "fibLong", true, CurrentBars[1][0], lLongLevel , CurrentBars[1][0], hLongLevel);

    #2
    Hello tkaboris,

    CurrentBars[1] is the bar number of the secondary series processing.
    This is not a series and CurrentBars[1][0] would not be valid.

    Unfortunately, drawing objects can only be drawn on the chart bars (the primary series, barsInProgress index 0).

    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    35 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    198 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    364 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    283 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X