PureBytes Links
Trading Reference Links
|
Paul,
This should do it.
If(
Mov(C,13,E) > Mov(C,89,E)
OR
MACD() > Mov(MACD(),9,E),{then bullish} +1,
If(
Mov(C,11,E) < Mov(C,55,E)
AND
MACD() < Mov(MACD(),5,E),{then bearish} -1,0
)) {close 2 ifs}
Usually easier to see if you spread it out like this.
Hope this helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "Paul Harris"
<paul_vicmar@xxx> wrote:
>
> I am trying to put together a binary wave formula for a stock I am
> looking at. However I want to plot +1 when one set of rules is
matched
> and -1 when another set of rules is matched.
>
> So my buy signal would be
> If(Mov(C, 13, E)) > Mov(C, 89, E) OR When( MACD(), >, Mov( MACD(),
9,
> EXPONENTIAL)),{then bullish} +1)
>
> And my sell signal would be
> If (Mov(C, 11, E)) < Mov(C, 55, E) AND When( MACD(),<, Mov( MACD
(), 5,
> EXPONENTIAL)),{then bearish} -1)
>
> Having some problems putting all this together in one formula. Is
> there anyone out there who can help.
> Many thanxs
>
> PAUL
>
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|