PureBytes Links
Trading Reference Links
|
Aha!! Thank you Graham - much appreciated. I can now get rid of all the extraneous bits from the pop-up, but how do I put IN the stuff I want, which is the way it used to be? That is - the Open, High, Low, Close, and Volume?
And I wonder why it was changed? Why would anyone want to know the value of the BBands at a particular point in time, and especially to several decimal places? Can't quite figure that one. It was great the way it used to be, so if I can restore that functionality, I'll be a happy little chappy :)
Thanks again Graham and Gordon.
Regards, NightStalker.
--- In amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxxx> wrote:
> If you do not want the BBands values to show
>
> _SECTION_BEGIN("BBands");
> P = ParamField("Price field",-1);
> Periods = Param("Periods", 15, 2, 100, 1 );
> Width = Param("Width", 2, 0, 10, 0.05 );
> Color = ParamColor("Color", colorLightGrey );
> Style = ParamStyle("Style");
>
> //CHANGE THESE 2 LINES
> Plot( BBandTop( P, Periods, Width ), "" + _PARAM_VALUES(), Color, Style );
> Plot( BBandBot( P, Periods, Width ), "" + _PARAM_VALUES(), Color, Style );
>
> _SECTION_END();
>
------------------------ 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/
|