PureBytes Links
Trading Reference Links
|
GoTo "Preferences" then the "other indicators tab" then go to where
the periods is for the DMI/ADX....
OR you can open the indicator builder and insert this code for some
quick functionality...
Mark
Title = "ADX / PDI / MDI Indicators " + " " + FullName() + " " +
Date( ) ;
A=Param("Periods",10,5,20,1);
A1=ParamColor("PDI Color",colorBrightGreen);
A2=ParamColor("MDI Color",colorRed);
A3=ParamColor("ADX Color",colorBlack);
A4=PDI(a);
A5=MDI(a);
A6=ADX(a);
Plot(A4,"PDI",A1,styleThick);
Plot(A5,"MDI",A2,styleThick);
Plot(A6,"ADX",A3,styleThick);
--- In amibroker@xxxxxxxxxxxxxxx, "rizwankherati"
<rizwankherati@xxxx> wrote:
>
> Hi,
>
> I am on trial and have the following issue, when I plot the ADX on
> the chart wondow(Insert-Standard charts-ADX) the system plots
> standard ADX(14) what do I do if I want to plot ADX(10)?
>
> Best regards
>
> Rizwan
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/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/
|