+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Movint Trand Surrogate

Moving Trend Surrogate AFL in Amibroker assesses trends using a surrogate approach. Integrated with Amibroker data feed, this AFL utilizes alternative trend indicators to analyze market movements. Traders leverage this AFL to gain insights into potential trend shifts, utilizing Amibroker data feed for accurate and timely market information to make informed trading decisions.

/
mtOpen = LinearReg( Open, 20 ); // calculate moving trend from open
mtHigh = LinearReg( High, 20 ); // calculate moving trend from open
mtLow = LinearReg( Low, 20 ); // calculate moving trend from open
mtClose = LinearReg( Close, 20 ); // calculate moving trend from open
// plot surrogate chart
PlotOHLC( mtOpen, mtHigh, mtLow, mtClose, "Surrogate", colorBlack, styleCandle );



Open chat
1
Hi, how can I help you?