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 sjsj2732, Yesterday, 04:31 AM
        0 responses
        33 views
        0 likes
        Last Post sjsj2732  
        Started by NullPointStrategies, 03-13-2026, 05:17 AM
        0 responses
        286 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        286 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        133 views
        1 like
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        91 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Working...
        X