PureBytes Links
Trading Reference Links
|
Here is a simple example of how to Historicaly Explore an indicator (Zig
in this case), Using the Parameters Dialog.
Remember, Hit CTRL-R to bring up the Parameters Dialog - Then use the
slider or Arrow Keys to move back in history.
<MSG>
/* This example
shows Zig() function
as you can see it is great in determining main trend
*Use the Parameters Popup to "Look Back" in
history
& watch the Zig adapt as you progress
through.
(Hit "CTRL-R" to bring up the Parameters
Dialog.)
*/
adjz =
Param("Zig",10,0,15.0,.1);
adjc =
Param("Back",0,0,BarCount,1);
CAdj =
Ref(Close,-adjc);
Graph1 = CAdj;
Graph0 =
Zig(
CAdj, adjz );
Yahoo! Groups Sponsor
ADVERTISEMENT
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 the Yahoo! Terms of Service.
|