| 
 PureBytes Links 
Trading Reference Links 
 | 
Anthony,
I use a EMA in combination with the MACD change.  These two are 
checked on a weekly basis, then I wait for a pull back in the 
Stochastics to an oversold position before entering a long.  I have 
looked at the DDL, but not a whole lot.  I couldn't figure out 1) how 
to get the MACD in this and 2) how to incorporate my daily Stochastic 
condition I was looking for.
Regards,
Jeff
--- In amibroker@xxxxxxxxxxxxxxx, "Anthony Faragasso" <ajf1111@xxxx> 
wrote:
> How do you determine the direction of the weekly trend...is it a 
Moving
> average...you could try
> 
> //Indicator builder
> 
> //Requires TimeFrame.dll
> //from 3rd party site
> WeeklyTime=5;//Time in Weeks...ex.5 weeks
>  Plot(TwC(),"",colorBlack,styleLine);//Weekly close
> Plot(TwEMA(TwC(),WeeklyTime),"",colorBlue,styleLine); //Exponential 
Moving
> average of the weekly close.
>  
>  
> //AA window...click explore
> 
> //Requires TimeFrame.dll
> //from 3rd party site
> 
> WeeklyTime=5;//Time in Weeks...ex.5 weeks
> WeeklyCond=TwC() > TwEMA(TwC(),weeklytime);
> Filter=WeeklyCond >0;
> AddColumn(weeklycond,"");
>  
> Also, if you want to have a weekly chart and daily chart open at 
the same
> time....
> Open your first chart of the desired ticker...select Daily or 
weekly view...
> 
> then select Window from the menu and select NEW....
> then select Window again and select Tile Vertically...
> Now set one of the views to weekly or daily....
> when you change ticker in one window, you will have to change it in 
the
> other also.... 
>  
> Anthony
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Z_CBYA/vB5FAA/AG3JAA/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/ 
 
 |