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 DanielTynera, Today, 01:14 AM
        0 responses
        2 views
        0 likes
        Last Post DanielTynera  
        Started by yertle, 04-18-2024, 08:38 AM
        9 responses
        41 views
        0 likes
        Last Post yertle
        by yertle
         
        Started by techgetgame, Yesterday, 11:42 PM
        0 responses
        12 views
        0 likes
        Last Post techgetgame  
        Started by sephichapdson, Yesterday, 11:36 PM
        0 responses
        2 views
        0 likes
        Last Post sephichapdson  
        Started by bortz, 11-06-2023, 08:04 AM
        47 responses
        1,615 views
        0 likes
        Last Post aligator  
        Working...
        X