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 Tim-c, Today, 03:54 AM
        0 responses
        3 views
        0 likes
        Last Post Tim-c
        by Tim-c
         
        Started by FrancisMorro, Today, 03:24 AM
        0 responses
        2 views
        0 likes
        Last Post FrancisMorro  
        Started by Segwin, 05-07-2018, 02:15 PM
        10 responses
        1,771 views
        0 likes
        Last Post Leafcutter  
        Started by Rapine Heihei, 04-23-2024, 07:51 PM
        2 responses
        31 views
        0 likes
        Last Post Max238
        by Max238
         
        Started by Shansen, 08-30-2019, 10:18 PM
        24 responses
        945 views
        0 likes
        Last Post spwizard  
        Working...
        X