PureBytes Links
Trading Reference Links
|
Plot(25,"line at 25",colored,styleline);
--- In amibroker@xxxxxxxxxxxxxxx, "tauvros" <tauvros@xxx> wrote:
>
> How Would I Go About Adding A Continuous red Horizontal Trendline
at
> 25 to the following code. TIA
>
> _SECTION_BEGIN("ADXR");
> /* Developed by Wells Wilder ADXR is a component of the Directional
> Movement
> System. The indicator is used to determine if the market under
study
> is
> trending or consolidating. According to Wilder values greater than
25
> indicate
> the use of Trend following systems or indicators. Values less than
25
> may be
> better suited to consolidation indicators.
>
> Perhaps more useful is to simply note if the indicator is rising or
> falling. A
> rising ADXR indicates a trend is either forming or in place, a
> falling ADXR
> indicates a weakening trend or consolidation phase. Note that a
> rising ADXR
> indicates trend strength not
> direction.*/
>
>
> pds=14;
> Adxr = ( ADX(pds) + Ref( ADX(pds), -14 ) )/2;
> Plot(ADxr,"",colorWhite,4);
> _SECTION_END();
>
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|