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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    50 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    16 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    22 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    23 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X