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 DJ888, 04-16-2024, 06:09 PM
        4 responses
        12 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by terofs, Today, 04:18 PM
        0 responses
        11 views
        0 likes
        Last Post terofs
        by terofs
         
        Started by nandhumca, Today, 03:41 PM
        0 responses
        7 views
        0 likes
        Last Post nandhumca  
        Started by The_Sec, Today, 03:37 PM
        0 responses
        3 views
        0 likes
        Last Post The_Sec
        by The_Sec
         
        Started by GwFutures1988, Today, 02:48 PM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Working...
        X