Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Using a Displayed Moving Avg in a strategy

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

    Using a Displayed Moving Avg in a strategy

    Does anyone know how to use strategy builder for Ninja 8 to have a displaced moving average as the indicator in a simple buy sell crossover. I get it to work but the actual entries and reversals are all wrong. I have inputs for the period and displaced value so that I can optimize it if and when I get it to work correctly.

    Basically the code reads as close crosses from below the EMA(Period, displaced value) go long and the reverse for the short.


    The strategy works if I just use the EMA or other Moving average, but the displaced line works so much better when I trade it manually off of the actual displaced line.

    Once I get this basic part correct, I can then add in the other noise filters.

    Any help would be appreciated.

    #2
    Hello TradingGuy,

    Displacement translates to a bars ago value. This is something that is just used visually for charts.

    If an indicator is displaced by 2, this means the value from 2 bars ago is shown on the current bar and the value for the current bar hovers in the blank area to the right where no bars are showing.

    So just add 2 to whatever bars ago value is being used.

    For example to detect a crossabove from 3 bars to 2 bars ago:

    Within the scope of the class:
    private SMA smaFast;
    private SMA smaSlow;

    Within OnStateChange() when State is State.DataLoaded:
    smaFast = SMA(7);
    smaSlow = SMA(14);

    In OnBarUpdate:
    if (smaFast[3] < smaSlow[3] && smaFast[2] > smaSlow[2])
    {
    Print(Time[0].ToString() + " A cross has occurred 2 bars ago");
    }
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    56 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    132 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    45 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X