Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Reference sample reversal strategy

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

    Reference sample reversal strategy

    Please post reference sample reversal strategy.

    This NOT work:

    if( Position.MarketPosition == MarketPosition.Long )
    {
    if( Close[0] > upperBand )
    {
    ExitLong();
    EnterShort();
    }
    }
    else if( Position.MarketPosition == MarketPosition.Short )
    {
    if( Close[0] < lowerBand )
    {
    ExitShort();
    EnterLong();
    }
    }
    else //Flat
    {
    if( Close[0] < lowerBand )//Long
    {
    EnterLong();
    }
    if( Close[0] > upperBand )//Short
    {
    EnterShort();
    }
    }

    #2
    Hello topor,
    Thanks for writing in and I am happy to assist you.

    EnterLong/EnterShort will close any existing position and then will got short/long. Please modify your code as per the below code

    Code:
    if( Position.MarketPosition == MarketPosition.Long )
    {
    if( Close[0] > upperBand )
    {
    EnterShort();
    }
    }
    else if( Position.MarketPosition == MarketPosition.Short )
    {
    if( Close[0] < lowerBand )
    {
    EnterLong();
    }
    }
    else //Flat
    {
    if( Close[0] < lowerBand )//Long
    {
    EnterLong();
    }
    if( Close[0] > upperBand )//Short
    {
    EnterShort();
    }
    }
    Please refer to the SampleMACrossover strategy which comes with NinjaTrader for a basic Moving average reversal strategy.
    • In Control Center menu bar goto Tools>Edit NinjaScript>Strategies…
    • In the Strategies dialog se
    lect SampleMACrossover and click on the Ok button.

    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Thanks, it works!

      Comment


        #4
        Hello topor,
        Glad to know it works for you.
        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

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