PureBytes Links
Trading Reference Links
|
Here's what I think the file "Keltner Bands.afll" should look like:
//--------- Keltner Bands (Start) --------------------
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 100, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
Color = ParamColor("Color", colorCycle );
Style = ParamStyle("Style");
CenterLine = MA( P, Periods );
KTop = CenterLine + Width * ATR( Periods );
KBot = CenterLine - Width * ATR( Periods );
Plot( KTop, "KBTop" + _PARAM_VALUES(), Color, Style );
Plot( KBot, "KBBot" + _PARAM_VALUES(), Color, Style );
//--------- Keltner Bands (End) --------------------
d
_____
From: William Peters [mailto:williampeters@xxxxxxxxxxx]
Sent: Sunday, September 19, 2004 2:32 PM
To: dingo
Subject: Re: [amibroker] Great New Features -- and a Question
d> How about when they pull up the formula they created a month ago: Will F1
d> tell them what it is?
Thats why code comments would help, wouldn't it? Sorry you have lost
me on this one :)
I'm still not sure what it was you were suggesting in the first place.
Regards,
William Peters
www.amitools.com
Sunday, September 19, 2004, 2:05:37 PM, you wrote:
d> And bull frogs wouldn't bump their asses when they jumped if they had
wings
d> would they?
d> And I also like H's idea and maybe even the file date/time would be nice.
d> Since this is a beta and we don't get offer suggestions during the "alfa"
d> phase I think its ok to offer improvement suggestions.
d> d
>> -----Original Message-----
>> From: William Peters [mailto:williampeters@xxxxxxxxxxx]
>> Sent: Sunday, September 19, 2004 1:58 PM
>> To: dingo
>> Subject: Re: [amibroker] Great New Features -- and a Question
>>
>>
>> It could be worth doing that to all the built-in formulas but
>> I was refering to our own custom forumla and thats where I
>> thought you were coming from. Newbies could however just
>> click the indicator name and press F1 which would give them
>> infomation on the the indicator.
>>
>> If you where refering to the information about the file
>> location or the associated ID then that might be helpful to
>> some who have 100's of files like Herman suggested.
>>
d> Check AmiBroker web page at:
d> http://www.amibroker.com/
d> Check group FAQ at:
d> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
d> Yahoo! Groups Links
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
<http://us.ard.yahoo.com/SIG=1298ap76c/M=298184.5285298.6392945.3001176/D=gr
oups/S=1705632198:HM/EXP=1095705172/A=2319498/R=0/SIG=11thfntfp/*http://www.
netflix.com/Default?mqso=60185352&partid=5285298> click here
<http://us.adserver.yahoo.com/l?M=298184.5285298.6392945.3001176/D=groups/S=
:HM/A=2319498/rand=687214148>
_____
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
<mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
<http://docs.yahoo.com/info/terms/> .
[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/
|