PureBytes Links
Trading Reference Links
|
I am trying to show each ticker/symbol on the tooltip as I move my
mouse over each line (I have 10 tickers on my watchlist).
My AFL code (below) doesn't seem to do it, anybody could help me with
this? (there are 10 lines on the screen and I wanted just ONE symbol
to be shown on the tooltip as I move my mouse over each line).
Thanks,
Gary
AFL code:
---------
ListNames = CategoryGetSymbols(categoryWatchlist, 0);
ColorCounter = 0;
for( i = 0; ( Symbol = StrExtract( ListNames, i ) ) != ""; i++ )
{
ColorCounter++;
ToolTip = Symbol;
Plot(Foreign(Symbol, "C"), Symbol, ColorCounter, styleLine |
styleNoTitle);
}
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/
|