PureBytes Links
Trading Reference Links
|
Thanks Goldwing...how do I hide the lines? to only view the histogram?
--- In amibroker@xxxxxxxxxxxxxxx, l washington <goldwing01_1999@xxxx>
wrote:
> //Volume-Weighted MACD Histogram
> lng=26;
> shrt=12;
> lEMA = EMA((Sum(C,lng)*V/Sum(V,lng)),lng);
> sEMA = EMA((Sum(C,shrt)*V/Sum(V,shrt)),shrt);
> vMACD = lEMA-sEMA;
> sig = EMA(vMACD,9);
> Plot(vMACD,"vMACD",1,1+4);
> Plot(sig,"Signal",1,8+4);
> ////////////////////////////////////////////////////////////
> ////////////////////////////////////////////////////////////
> /From: "Anthony Faragasso" <ajf1111@>
> Date: Sun Jan 30, 2005 7:51 pm
> Subject: Re: [amibroker] Changing MACD histogram colors*/
> 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", IIf(ml-sl >
0,colorBrightGreen,colorRed ), styleNoTitle | ParamStyle("Histogram
style",
> styleHistogram | styleNoLabel, maskHistogram ));
>
>
> George Poulos <globalgreek@xxxx> wrote:
> I have searched but have not found any code to plot the MACD histogram
> without the macd or signal lines, also would like to change the
> thickness and values.
> TIA
>
>
>
>
> 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 the Yahoo! Terms of Service.
>
>
>
> ---------------------------------
> Discover Yahoo!
> Find restaurants, movies, travel & more fun for the weekend. Check
it out!
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/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/
|