PureBytes Links
Trading Reference Links
|
Hello,
You are mixing two things:
1. the fact that function uses 'close' array indirectly as input array
or input array is passed as argument:
RSI vs RSIa
- the first one uses close indirectly and second one does
not - it takes first argument as input array.
but this has NOTHING to do with 'dynamic' or 'variable' period.
=======================================
2. Variable 'period' or 'range'.
For example MA (simple moving average )
can already accept both constant and variable period:
MA( Close, 15 );
period_dynamic = ... your calculation here...
MA( Close, period_dynamic
=====================
The 'basic building blocks' are already 'dynamic':
HHV, LLV, HHVBars, LLVBars,
DEMA, TEMA, MA, WMA, REF,
SUM, AMA, AMA2
(not to mention functions that accepted arrays
from the beginning)
they allow to implement majority of adaptive trading
systems.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Steve Dugas" <sjdugas@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, April 18, 2003 1:49 AM
Subject: Re: [amibroker] Re: New poll for amibroker
> Hi Fred,
>
> The functions RSIa() and CCIa() will accept an array - they are dynamic.
>
> Steve
>
> ----- Original Message -----
> From: "Fred" <fctonetti@xxxxxxxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Thursday, April 17, 2003 7:39 PM
> Subject: [amibroker] Re: New poll for amibroker
>
>
> > Regarding RSI and CCI ... They can ? In terms of Periods ?
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, amibroker@xxxxxxxxxxxxxxx wrote:
> > >
> > > Enter your vote today! A new poll has been created for the
> > > amibroker group:
> > >
> > > In Message 38070, Tomasz suggested that
> > > we compose a list of the most desired
> > > indicators for dynamic parameters so he
> > > can prioritize. PLEASE SELECT YOUR TOP
> > > 10 FROM THIS LIST. Note that I combined
> > > several similar indicators/functions to
> > > keep the list at 25 which is the maximum
> > > for a poll. So a combined entry
> > > (BBANDBOT & BBANDTOP, for example) only
> > > counts as one indicator for the purposes
> > > of this poll :-). Also note that RSI
> > > and CCI can already accept dynamic
> > > parameters. Poll closes in one week.
> > > Thanks for your input! Mark
> > >
> > > o ADX
> > > o ATR
> > > o BBANDBOT & BBANDTOP
> > > o CHAIKIN
> > > o MACD & SIGNAL
> > > o MDI
> > > o MFI
> > > o OSCP
> > > o OSCV
> > > o PDI
> > > o RMI
> > > o ROC
> > > o RWI
> > > o RWIHI & RWILO
> > > o SAR
> > > o STOCHK & STOCHD
> > > o TRIX
> > > o ULTIMATE
> > > o HHV & LLV
> > > o HHVBARS & LLVBARS
> > > o DEMA, MA, TEMA, WILDERS, WMA
> > > o HOLD
> > > o REF
> > > o LINEARREG, LINREGSLOPE, TSF
> > > o STDERR & STDEV
> > >
> > >
> > > To vote, please visit the following web page:
> > >
> > > http://groups.yahoo.com/group/amibroker/surveys?id=1071266
> > >
> > > Note: Please do not reply to this message. Poll votes are
> > > not collected via email. To vote, you must go to the Yahoo! Groups
> > > web site listed above.
> > >
> > > Thanks!
> >
> >
> >
> > 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
> >
> > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
> >
> >
>
>
>
>
> 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
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make Money Online Auctions! Make $500.00 or We Will Give You Thirty Dollars for Trying!
http://us.click.yahoo.com/yMx78A/fNtFAA/i5gGAA/GHeqlB/TM
---------------------------------------------------------------------~->
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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|