PureBytes Links
Trading Reference Links
|
hi,
you mean to smooth: Plot(TimeFrameExpand( MA14_Weekly, inWeekly ),"",colorWhite,1);
the raffled line?
I inserted that one as an example. Since this is the MA14_Weekly plotted in the timeframe you have in front of you which I presume is days but could be anything shorter than weeks.
You will see that if you switch to "weeks" on your display the rafles will disappear. It is raffled because it is calculated in a weekly time frame and plotted in a time frame shorter than weeks. So it should be raffled,
rgds, Ed
----- Original Message -----
From: lamplowman
To: amibroker@xxxxxxxxxxxxxxx
Sent: Friday, August 13, 2004 10:13 AM
Subject: [amibroker] Re: Weekly indicators on daily charts
Thanks Ed,
I love the arrows, might use them in other things.
Is there any way to smooth the plot?
--- In amibroker@xxxxxxxxxxxxxxx, "ed nl" <ed2000nl@xxxx> wrote:
> there is an example in the manual. I added a chart
>
> rgds, Ed
>
> TimeFrameSet( inWeekly );
> MA14_Weekly = MA( Close, 14 );
>
> TimeFrameRestore();
>
> Buy = Cross( Close, TimeFrameExpand( MA14_Weekly, inWeekly ) );
> BuyPrice = Close;
>
> Plot(C,"",colorWhite,64);
> PlotShapes(IIf(Buy,shapeUpArrow,0),colorWhite, layer = 0,
yposition = BuyPrice, offset = 0 );
> Plot(TimeFrameExpand( MA14_Weekly, inWeekly ),"",colorWhite,1);
>
> ----- Original Message -----
> From: lamplowman
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Thursday, August 12, 2004 12:21 PM
> Subject: [amibroker] Weekly indicators on daily charts
>
>
> Has anyone managed to use AFL and plot weekly indicators on
daily
> charts alla Incredible Charts style.
>
> I have tried just increasing the daily rate, but it's not quite
the
> same.
>
> Peter
>
>
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
------------------------------------------------------------------------------
Yahoo! Groups Links
a.. To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
b.. To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|