PureBytes Links
Trading Reference Links
|
I would like for the values that are shown at the righthand side of the chart to be the values of the BAR THAT I LAST CLICKED, instead of the values of the actual last bar shown on the chart.
Do any of you know how to do this.
If not, then I would like to see a title example that would allow me to have these "LAST PLACE CLICKED" values show up in the title line. I have 30 of these values that I would like to see appear. My POPUP MENU is maxed out at 26 values. I found the below pasted code in a Demarker Indicator that does show a value in the title line of the original Demarker indicator, but I could not get it to work for any of my values when I modified it so that >>GRAPHO=my AFLcodedvalue;
I saw nothing in preferences that talked about doing this.
For instance, If one of you would be kind enough to post a working example of this title that works. >>>Title="Stochk(14)+Rsi(14)";, then I think I could figure out how to modify it to work in my title.
All help and suggestions will be appreciated. Ron D
highm = IIf( H > Ref( H, -1 ), H - Ref( H, - 1), 0 );
lowm = IIf( L < Ref( L, -1 ), Ref( L, - 1 ) - L, 0 );
DeMarker = 100 * Sum( highm, 13 )/( Sum( lowm, 13 ) + Sum( highm, 13 ) );
Graph0 = DeMarker;
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.795 / Virus Database: 539 - Release Date: 11/12/2004
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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:
http://docs.yahoo.com/info/terms/
|