Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SMA displacement

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

    SMA displacement

    I see you can set a displacement on a simple moving average on a chart, but you cannot set a displacement value on an SMA in an automated strategy. IS this true ?
    Is there a reason for this ?

    Thank you for your help

    shane

    #2
    Originally posted by shanemcdonald View Post
    I see you can set a displacement on a simple moving average on a chart, but you cannot set a displacement value on an SMA in an automated strategy. IS this true ?
    Is there a reason for this ?

    Thank you for your help

    shane
    Not true: you use the indexing capability.
    Code:
    double displacedSMAValue  = SMA(Close, Period)[displaceValue];
    Alternatively, use a named instance, and set the Displacement property.
    Code:
    private SMA displacedSMA;
    private int displacementValue = 10; //(say)
    private int Period = 10; //(say)
    Code:
    displacedSMA = SMA(Close, Period);
    displacedSMA.Displacement = displacementValue;

    Comment


      #3
      Hi

      Thank you very much for that info !
      That was good of you.

      shane

      Comment


        #4
        Hello Shane,

        Thank you for your post and Koganam for answering.

        Let us know if we can be of further assistance.
        Cal H.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by helpwanted, Today, 03:06 AM
        1 response
        9 views
        0 likes
        Last Post sarafuenonly123  
        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
        385 views
        1 like
        Last Post Gavini
        by Gavini
         
        Working...
        X