+91-0000000000

}

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

Future Projection

Future Projection involves estimating potential future price movements using various analytical methods. Utilizing Amibroker AFL, traders can create projection models based on technical indicators or statistical analysis. Amibroker data feed integration provides timely market data, enabling accurate projections for informed trading decisions.

/_SECTION_BEGIN("Future MA");
// Plot Future MA.
Fwd = Param( "Fwd Period", 5, -50, 50 );
FwdC = Ref(Close,Fwd);
FwdMA = MA(FwdC,Fwd);
Plot(C,"Close",colorBlack,styleLine,0,0,-Fwd);
Plot(FwdC,"FwdClose",colorRed,styleLine);
Plot(FwdMA,"FwdMA",colorGreen,styleLine);
_SECTION_END();

Open chat
1
Hi, how can I help you?