Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Developing Indicator to use in MA

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

    Developing Indicator to use in MA

    I want to develop an alert when the last price is within 10 cents of the 200 day SMA, but that's not possible in MA. Is it possible to develop an indicator that will tell me the distance (in cents) that the price is from the 200 SMA that I can then develop an alert from? If so, any help with the code?
    Last edited by mavrik2747; 06-15-2011, 04:31 AM.

    #2
    Welcome to our forums - I believe you could start for example with a MACD set to 1, 200, 1 as settings, so in essense you just see the difference of price vs the EMA used. For your version using a SMA the code would need to be changed / modified then. We have some great tutorials on getting started in custom coding:

    Comment


      #3
      Not sure if this is right or not, but here's what I've come up with for the code line from going through previous posts...

      (Math.Abs(Close[0] - SMA(200)[0]) < .1)
      or
      (Math.Abs(Close[0] - SMA(200)[0])=[0])

      Would the first one work for when to identify when the price is within 10 cents and the second one work for the absolute value of whatever the difference is?

      For alerts, I'm assuming I could set up a true/false alert for the first line and actual value alert for the second.

      Am I getting close or am I completely off?

      Comment


        #4
        You're very close, the first would work for detecting if it's within the range you set, while the other checks for the actual difference value - although it's likely never exactly 0, so some tolerance would be needed.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        571 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        331 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
        549 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        549 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X