PureBytes Links
Trading Reference Links
|
a 1 day average of the High could be plotted as the high, to offset
it by 10 days is using the Ref(H,-10)
a 1 day average of the low could be plotted as the low, to offset it
by 6 days is using the Ref(L,-6)
a moving average offset by 1 day would be
Ref(Mov(C,5,S),-1)
To Plot all 3 in one Indicator
A1:=Ref(H,-10);
A2:=Ref(L,-6);
A3:=Ref(Mov(C,5,S),-1);
A1;A2;A3;
--- In Metastockusers@xxxxxxxxxxxxxxx, "superfragalist"
<jackolso@xxxx> wrote:
>
> Open the manual. Look in the index. Find moving averages. Read all
> the material on moving averages and see if you can put two and two
> together. The manual is always a good place to start.
>
>
>
> --- In Metastockusers@xxxxxxxxxxxxxxx, Muhammad Deen
<smdeen_pk@xxxx>
> wrote:
> > Will anybody can explain the meaning of folowing.
> > , The green line is a 1-day moving average of the HIGH
> > offset forwards by 10 days, and the red line is a
> > 1-day moving average of the LOW offset forwards by six
> > days. The BUY/SELL trigger is the light grayish line
> > and is a 5-day moving average offset forward by one
> > day.
> > How to plot this as an indicator
> > Thanks
> >
> > =====
> > S.M.Deen
> >
> >
> >
> > __________________________________
> > Do you Yahoo!?
> > Take Yahoo! Mail with you! Get it on your mobile phone.
> > http://mobile.yahoo.com/maildemo
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|