| 
 PureBytes Links 
Trading Reference Links 
 | 
--- In equismetastock@xxxxxxxxxxxxxxx, "Stephen Dawson" 
<dawsonsg@xxxx> wrote:
> Hi Guys,
> 
> I was wondering if anyone could let me know is it possible to 
create a Fast %K stochastic indicator in metastock? If so, could 
someone please give me a clue.
> 
> Another thing while I am here, I have Metastock in a Nutshell but 
was wondering what the best book is to get for programming in 
Metastock to do with "Expert Advisor" and "System Tester". 
> 
> Any help appreciated,
> Regards
> 
> Steve Dawson
{*******************************************************************
Description	: This Indicator plots the Fast Stochastic %K & %D 
Lines 
 
********************************************************************}
 
Inputs: HighValue(High), LowValue(Low), CloseValue(Close), Length
(14), OverSold(20), OverBought(80); 
 
Plot1(FastKCustom(HighValue, LowValue, CloseValue, Length), "FastK");
Plot2(FastDCustom(HighValue, LowValue, CloseValue, Length), "FastD");
Plot3(OverBought, "OverBought");
Plot4(OverSold, "OverSold");
{Alert Criteria}
If Plot1 > OverBought Then
	Alert("The %K line is in overbought territory")
Else
	If Plot1 < OverSold Then
		Alert("The %K line is in oversold territory"); 
------------------------ Yahoo! Groups Sponsor --------------------~--> 
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~-> 
 
Yahoo! Groups Links
<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
    equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 
 |