PureBytes Links
Trading Reference Links
|
You can answer these questions simply by plotting both lines on the
same scale and seeing if they ever give a buy signal. They almost
always do. The MA is above the C value, so it is hard to tell if the
condition is ever true. Adding shapes to your formula reveals whether
the condition is ever true. It is almost always true for QQQQ. Plot
the following and then think about what you really are trying to do.
plot(MA( Close , 8 ) , "MA8", colorred);
plot(c * MA8Multi, "C value", colorblue);
plotshapes(!buy * shapeuparrow, colorgreen); // shows when not true
I plotted QQQQ and your conditions were true except for two times
since 1999.
Barry
/ --- In amibroker@xxxxxxxxxxxxxxx, "interfool" <02@xxx> wrote:
>
> I'm trying to scan for stocks that are X amount below the 8 MA.
>
> Here's the code I have so far. Doesn't work. I also would like to
see
> the value of MA(Close,8) when I run the scan, so I know what values
> would be good to start with. Code snippet:
>
> _SECTION_BEGIN("Basic Params");
> MA8Multi = Param("MA 8 Multiplier",.9,.000001,100,.01) ;
> _SECTION_END();
>
> Buy = MA( Close , 8 ) > Close * MA8Multi ;
>
> What am I doing wrong?
>
> Thanks,
>
> ol' interfool
>
------------------------------------
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/
|