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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    63 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    35 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    54 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    61 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    48 views
    0 likes
    Last Post CarlTrading  
    Working...
    X