Weekly EMA on Daily Chart for Amibroker (AFL)
rohann almost 12 years ago Amibroker (AFL)
This AFL plot weekly EMA on daily chart…so user doesn’t need to switch weekly chart for looking EMA position…
Indicator / Formula
Copy & Paste Friendly
StartBar=SelectedValue(BarIndex());
FinishBar = EndValue( BarIndex() );
i = Startbar;
//Plot(Close,"Close",colorBlack,styleCandle);
TimeFrameSet(inWeekly);
f=EMA(Close,200);
H=TimeFrameExpand(f,inWeekly);
Plot(H,"my",colorBrown,styleLine);1 comments
Leave Comment
Please login here to leave a comment.
hello,
do you happen to know how to plot a WEEKLY MACD and STOCH on a DAILY CHART please?
thank you