Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

difference EMA and PRICE in %

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

    difference EMA and PRICE in %

    Hello ,any ideas on how to create this histogram indicator? thanks for any help

    Calculation
    The formula for this indicator is quite simple:
    Copy(close - MA)/MA
    The MA value is subtracted from the close in order to determine the difference between the two values. The difference is divided by the MA value in order to convert the raw value to a percentage.
    Note: Our formula above is not specific about the type of moving average. This indicator can be charted with either a simple or exponential moving average (SMA or EMA).
    Attached Files

    #2
    Hello janio973,

    If you are new to indicator development I would suggest looking at some of the simple indicators like the EMA or SMA or Bollinger, those show some of the basic plotting and math concepts. The equation you want would be written as:

    Code:
    double sma = SMA(12)[0];
    double result =(Close[0] - sma) / sma;

    Comment


      #3
      Thanks NinjaTrader_Jesse for your help ​,
      Usually I make a strategy and then transform it into an indicator
      But I dont have and idea where to paste the code above..but I will search
      Can you suggest one indicator where I can paste it,I try MACD but fail and almost block my platform

      Comment


        #4
        Hello janio973,

        That would go in OnBarUpdate. That is just the calculation, you would still have to display it by using a Plot or Drawing Object.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        558 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        324 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        545 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        547 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X