PureBytes Links
Trading Reference Links
|
Hi Carey,
Plot your conditions so can see what is going on. Try this:
fLLV = LLV(L, 7);
Plot(C, "", colorBlack, ParamStyle( "Price Style", styleBar,
maskPrice ) );
Buy = C > MA(C, 200) OR L <= fLLV; // gives lots of signals
// or try Buy = C > MA(C, 200) AND L <= fLLV; gives less signals
Plot(MA(C,200), "MA(200)", colorRed);
Plot(fLLV, "LLV", colorRed);
PlotShapes(Buy * shapeUpArrow, colorGreen );
When messing with it keep as much visual as you can until the results
are what you expect.
Cheers,
Barry
--- In amibroker@xxxxxxxxxxxxxxx, "cdickerm" <cdickerm@xxx> wrote:
>
> I am messaging with some basic formulas and I have yet to correctly
> code the following conditions:
>
> 1) buy when closing price is above the 200-day moving average.
>
> 2) buy the close of the seven-day low.
>
> Much Appreciation for anybody's help.
>
> Happy New Year,
> Carey
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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/
|