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 charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    60 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    148 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    162 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    98 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    286 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X