PureBytes Links
Trading Reference Links
|
yes
StrLen( Name() ) < 4;
On Tue, 15 Mar 2005 11:11:52 -0000, Ian <ian@xxxxxxxxxxxxxxxxxx> wrote:
>
>
> thanks Graham,
>
> on a related matter is it possible to explore and exclude stock
> codes of more than 3 letters?
>
> thanks
> Ian
>
> --- In amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxxx> wrote:
> > Here is the code for the plot of MACD
> > _SECTION_BEGIN("MACD");
> > r1 = Param( "Fast avg", 12, 2, 200, 1 );
> > r2 = Param( "Slow avg", 26, 2, 200, 1 );
> > r3 = Param( "Signal avg", 9, 2, 200, 1 );
> > Plot( ml = MACD(r1, r2), StrFormat(_SECTION_NAME()+"(%g,%g)", r1,
> r2),
> > ParamColor("MACD color", colorRed ), ParamStyle("MACD style") );
> > Plot( sl = Signal(r1,r2,r3), "Signal" + _PARAM_VALUES(),
> > ParamColor("Signal color", colorBlue ), ParamStyle("Signal
> style") );
> > Plot( ml-sl, "MACD Histogram", ParamColor("Histogram color",
> > colorBlack ), styleNoTitle | ParamStyle("Histogram style",
> > styleHistogram | styleNoLabel, maskHistogram ) );
> > _SECTION_END();
> >
> > so from this
> >
> > r1 = Param( "Fast avg", 12, 2, 200, 1 );
> > r2 = Param( "Slow avg", 26, 2, 200, 1 );
> > r3 = Param( "Signal avg", 9, 2, 200, 1 );
> > ml = MACD(r1, r2);
> > sl = Signal(r1,r2,r3);
> > hist = ml-sl;
> >
> > filter = cross(hist,0);
> > addcolumn(c,"close",1.3);
> >
> > On Tue, 15 Mar 2005 10:02:25 -0000, Ian <ian@xxxx> wrote:
> > >
> > >
> > > hi all,
> > >
> > > just wondering if anyone is able to do a conversion of the
> following
> > > formula used in FCharts by a mate of mine? It is used to find
> stocks
> > > which price has pulled right back below the ma.
> > >
> > > M_MACDHistBelowZero[1] and M_MACDHistAboveZero
> > >
> > > thanks
> > >
> > >
> > > 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 other support material please check also:
> > > http://www.amibroker.com/support.html
> > >
> > >
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> >
> >
> > --
> > Cheers
> > Graham
> > http://e-wire.net.au/~eb_kavan/
>
>
> 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 other support material please check also:
> http://www.amibroker.com/support.html
>
> Yahoo! Groups Links
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|