Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

A MACD but with simple moving averages

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

    A MACD but with simple moving averages

    I'm just a beginner programming and I'd like to create a MACD with simple moving averages, to have a variation from exponential moving average.

    Where Can I see tips that actually could help me to construct this indicator?

    Thanks for any help

    #2
    If you're looking to simply have an MACD that is based on simple moving averages. You can open the MACD indicator in the editor, right-click and choose "save as" and give it a new name. Then you can go through and modify the code to use SMA.

    Mainly these lines:
    fastEma.Set((2.0 / (1 + Fast)) * Input[0] + (1 - (2.0 / (1 + Fast))) * fastEma[1]);
    slowEma.Set((2.0 / (1 + Slow)) * Input[0] + (1 - (2.0 / (1 + Slow))) * slowEma[1]);

    Should be:
    fastEMA.Set(SMA(Input, Fast)[0]);
    slowEMA.Set(SMA(Input, Slow)[0]);

    Of course you might also want to rename things to make them more appropriate like fastEMA to fastMA.

    VT

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    174 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    329 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    252 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    355 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    182 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X