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 helpwanted, Today, 03:06 AM
        0 responses
        3 views
        0 likes
        Last Post helpwanted  
        Started by Brevo, Today, 01:45 AM
        0 responses
        7 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        5 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        242 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Working...
        X