PureBytes Links
Trading Reference Links
|
Carey, this makes a little more sense. It shows both buy and sell
sides and shows one way to get rid of multiple signals. Just change
it around and see what plots and you will start to understand what
AFL is doing.
fLLV = LLV(L, 7);
fHHV = HHV(H,7);
fMA200 = MA(C,200);
// change the AND to an OR and see what happens
Buy = C > fMA200 AND L <= fLLV;
Sell = C < fMA200 AND H >= fHHV;
// uncomment the following lines to remove multiple signals
// Buy = ExRem(Buy,Sell);
// Sell = ExRem(Sell,Buy);
Plot(C, "", colorBlack, ParamStyle( "Price Style", styleBar,
maskPrice ) );
Plot(fMA200, "MA(200)", colorBlue);
Plot(fLLV, "LLV", colorRed);
Plot(fHHV, "HHV", colorRed, styleDashed);
PlotShapes(Buy * shapeUpArrow, colorGreen );
PlotShapes(Sell * shapeDownArrow, colorRed );
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/
|