PureBytes Links
Trading Reference Links
|
Johan, thanks for this information. I possess only a
small amount of tech knowledge, so I am still too cautious to insert this
into my Built-in price chart right away.
It works great in a 100%
custom indicator which DOES NOT HAVE the below #include in
the code.
#include <FONT color=#ff00ff
size=4>"C:\\program files\amibroker\afl\include\writeuponstock.afl"<FONT
size=4>;
However, I tried another custom indicator version of the
built-in price chart which still had the #include left in it and it
still shows the same error when I click on apply.
Below, I have pasted part of the contents of the
writeuponstock.afl which shows the many calls to QP2, data, and other calls for
more data such as
GetExtraData("briefing"),"");
I don't subscribe to any of these data sources, but the built-in price
indicator works for me anyway without giving error messages, so I am
wondering why a custom indicator with this same #include
"C:\\program
files\amibroker\afl\include\writeuponstock.afl"<FONT
size=4>; will not work , but instead, gives me an
error message.
Right now, I am using a custom indicator for what I want, but
eventually, I would like to be able to have "BwidthPctChg" appear in the
popup menu of the built-in price chart.
Even if Johan's solution will not work
for me, I would still like to try pasting it into the built-in
price chart, if I can be assured that it POSITIVELY will not harm my
built-in price chart. My ignorance makes me skittish. Ron
D
WriteIf(Buy==1 OR Buy ==
0,GetExtraData("briefing"),"");//1WriteIf(Buy==1 OR Buy == 0,"\n"+"QP2
Relative Strength ="+
WriteVal(GetExtraData("QRS")),"");//2WriteIf(Buy==1 OR Buy == 0,"Shares
Float = "+
WriteVal(GetExtraData("SharesFloat")),"");//3
<FONT
size=3>========================================================================
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
johsun
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Friday, April 16, 2004 11:56
AM
Subject: [amibroker] Re: Modify Price
Chart
It appears you don't have to add code before //Indicator end line,
just append following line to existing price chart code and the
additional info appears in tool tip window. Don't worry about
disrupting the code, adding this line is
safe.Plot(ROC(width,1),"\nBwidthPctChg",1,styleNoDraw);Johan---
In amibroker@xxxxxxxxxxxxxxx,
"mrdavis9" <mrdavis9@x...>
wrote:> Thanks for the suggestions. My builtin price chart has
> #include "C:\\program
files\amibroker\afl\include\writeuponstock.afl";> > and I
tried using > #include "C:\program
files\amibroker\afl\include\writeuponstock.afl", and ,
Progra~1 , and neither of them worked. > > I am pretty
sure that I would overheat my brain once again if I tried to learn
all about WriteIf. Also,from what I read in Help, WriteIf() would be
of no use in getting ,"BwidthPctChg",to appear in the popup menu.
> > Further, I found nothing in help about modifying
built-in indicators. I looked at past posts of how to add to the builtin
indicators, and none of them even mentioned the popup menu. >
> Does anyone have other ideas of how to make the builtin popup
menus display additional information? Ron D>
> ------------------------ Yahoo! Groups Sponsor
---------------------~-->Buy Ink Cartridges or Refill Kits for your HP,
Epson, Canon or LexmarkPrinter at MyInks.com. Free s/h on orders $50
or more to the US & Canada.<A
href="">http://www.c1tracking.com/l.asp?cid=5511<A
href="">http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM---------------------------------------------------------------------~->Send
BUG REPORTS to <A
href="">bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
<A
href="">suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: <A
href="">amiquote@xxxxxxxxxxxxxxx (Web
page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links<*> To visit your group on the web, go
to: <A
href="">http://groups.yahoo.com/group/amibroker/<*>
To unsubscribe from this group, send an email to:
<A
href="">amibroker-unsubscribe@xxxxxxxxxxxxxxx<*>
Your use of Yahoo! Groups is subject to: <A
href="">http://docs.yahoo.com/info/terms/
---Outgoing mail is certified Virus Free.Checked by AVG
anti-virus system (<A
href="">http://www.grisoft.com).Version: 6.0.656
/ Virus Database: 421 - Release Date: 4/15/2004
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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.
|