Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Is this simple?

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

    Is this simple?

    Hello ,

    I have this box indicator which marks the Tokyo session.

    I would like to make a strategy which takes a trade when the box breaks from so many pips from the box.

    Can someone help me do it and I will share the indi.

    The indi is not free so I cant post it publicly


    Thank you

    Basil

    #2
    Hello Blazer,

    Without knowing the price of the lines from the script, I can't give definitive answer, but I can give you the theory.

    I will use the RSI as an example

    Example -
    Code:
    //Lower line
    if(Close[0] - 10 * TickSize <= RSI(14, 3).Lines[0].Value)
    {
    //Do something
    }
    
    //Upper line
    if(Close[0] + 10*TickSize >= RIS(14,3).Lines[1].Value)
    {
    //Do something
    }
    Cal H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    71 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    43 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    25 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    28 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    56 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X