PureBytes Links
Trading Reference Links
|
Hi Yuki,
Thanks for the quick reply. That will work great and allow me to
change a lot of my indicators as I like to have different parameters
for each time frame.
Dave
--- In amibroker@xxxxxxxxxxxxxxx, Yuki Taga <yukitaga@xxx> wrote:
>
> Hi marketmonk777,
>
> Monday, February 6, 2006, 1:21:41 PM, you wrote:
>
> m> Hi,
>
> m> I would like to have the moving averages change as I switch from a
> m> Daily chart to a Weekly chart.
>
> m> Was looking to have (as an example) a 50 ma and a 200 ma on the Daily
> m> and a 10 ma and a 40 ma on the weekly.
>
> m> I can see how to have text, trendlines, and other studies be assigned
> m> to a particular layer but can't seem to figure out to do the same
with
> m> the MAs. Is this possible?
>
> Like this:
>
> Define plain vanilla MAs; then set them according to Interval().
>
> if (Interval()==86400) //Daily Bars
> LMA = MA(C,200); //Long Moving Average
> else
> LMA = MA(C,40); //Weekly Bars
>
> Yuki
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|