Search found 1 match

by sdg
18 Oct 2014
Forum: MultiCharts .NET
Topic: Programming code for Moving Average of a Moving Average
Replies: 1
Views: 1479

Programming code for Moving Average of a Moving Average

I am trying to create a Zero-Lagging Moving Average indicator on similar lines in Powerlanguage.Net Editor.

///
EightSMA:= Mov((O+H+L+C)/4,8,S);
ZeroLag8SMA:= EightSMA + (EightSMA - Mov(EightSMA,8,S));
///

Can anybody help me with the programming in .Net?

Go to advanced search