Skip to main content

Weekly EMA on Daily Chart for Amibroker (AFL)

rohann almost 12 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 3)
  • Tags:
    amibroker, timeframe

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

1. Ping
over 11 years ago

hello,

do you happen to know how to plot a WEEKLY MACD and STOCH on a DAILY CHART please?

thank you

Leave Comment

Please login here to leave a comment.