Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

MTF Input

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

    MTF Input

    Hi
    I am trying to add two inputs to a indicator in a multi time frame strategy,Min and High.I am having trouble with High

    This compiles but I get no entry's

    && LowerRangeBand(MIN(BarsArray[1], 120), 3.5, 5).High[0] > LowerMedian(BarsArray[1],30).Lower[0])

    If I remove . High I get entry's but not as desired,any idea where I'm going wrong

    Thanks

    #2
    Hello,

    Thank you for your post.

    I am not familiar with the LowerRangeBand() indicator, however I would recommend drawing a horizontal line for the LowerRangeBand(MIN(BarsArray[1], 120), 3.5, 5).High[0] and the LowerMedian(BarsArray[1],30).Lower[0] with different colors to see if this is returning true visually on the chart.

    Something like the following:
    Code:
    DrawHorizontalLine("high", LowerRangeBand(MIN(BarsArray[1], 120), 3.5, 5).High[0], Color.Green);
    DrawHorizontalLine("low", LowerMedian(BarsArray[1],30).Lower[0], Color.Red);
    For information on HorizontalLine() please visit the following link: http://www.ninjatrader.com/support/h...zontalline.htm

    Please let me know if you have any questions.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    561 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    325 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    547 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X