PureBytes Links
Trading Reference Links
|
TimeFrameSet(inWeekly);
a = Ref(Low,-5);
b = Close;
e= b-a;
m = MA(e,5);
d = Close-Ref(Low,-1);
n = MA(d,5);
TimeFrameRestore();
Plot( TimeFrameExpand(d, inWeekly, expandFirst) , "c-1",
colorBlue,styleLine);
Plot(TimeFrameExpand(m, inWeekly, expandFirst) , "mae",
colorYellow,styleLine);
Plot( TimeFrameExpand(n, inWeekly, expandFirst) ,"mad",
colorRed,styleLine);
//----------------END------------//
--- In amibroker@xxxxxxxxxxxxxxx, "Robert" <disqplay0@xxx> wrote:
> The following code is for displaying this indicator on a daily basis
> I have been trying to get it to plot on a weekly basis on the daily
> charts using the timeframecompress but just can't seem to get it to
> work any suggestions or assistance in this matter would be greatly
> appreciated.
>
> a = Ref(Low,-5);
> b = Close;
> e= b-a;
> m = MA(e,5);
> d = Close-Ref(Low,-1);
> n = MA(d,5);
>
> Plot(d,"c-1",colorBlue,styleLine);
> Plot(m,"mae",colorYellow,styleLine);
> Plot(n,"mad",colorRed,styleLine);
>
> Thank you in advance for any and all help with this Robert
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|