PureBytes Links
Trading Reference Links
|
Tomasz,
Thanks for your quick reply and help. Seems pretty straightforward
now that you told me. Based on your description, I guess I'll leave
the default label as is for this function, but at least I'll know
how to do it the next time.
Perhaps when you get a chance you could put a brief mention of
the "extended form" of the function name in the API docs, since
other than this problem I had no trouble whatsoever creating my
plugin using the current docs.
Thanks again...
Dave Morrill
--- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <amibroker@xxxx>
wrote:
> Hello,
>
> "range" is default name for second numeric parameter that
> AmiBroker comes up with automatically if you don't provide your
own name.
>
> This is typical name of 2nd parameter for functions like MA, EMA,
WMA, ROC, RSIa
> Since your MOMA is (probably) also a kind of average, then "range"
> just follows the same convention which is good.
>
> If you want your own name instead you should provide it in the
function table.
>
> If your function table has an entry like this:
>
> "MOMA", { VMOMA, 1, 0, 1, 0 , NULL },
>
> You may change it to :
>
> "MOMA( array, bars = 10 )", { VMOMA, 1, 0, 1, 0 , NULL },
>
> to have "bars" instead of default "range".
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/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/
|