[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Stochastic



PureBytes Links

Trading Reference Links

{*******************************************************************
Description: Fast Stochastic %K
Provided By: Omega Research, Inc. (c) Copyright 1999
********************************************************************}

Inputs: Length(NumericSimple);

Value1 = Lowest(Low, Length);
Value2 = Highest(High, Length) - Value1;
Value3 = Close;

If Value2 > 0 Then
	FastK = (Value3 - Value1) / Value2 * 100
Else 
	FastK = 0;

-----Original Message-----
From: Ron [mailto:ron560@xxxxxxxxxxx]
Sent: Monday, July 10, 2000 2:18 PM
To: Omega List
Subject: Stochastic


Can someone please post the original fast stochastic formula ela. I am
trying to match the Qchart stochastic to Tradestation and they are very
different for the same input values. I have been told the following by
Qcharts list:

"QCharts may be averaging the num and denom separately vs. averaging
num/denom. MetaStock does the former and TS once did the latter "

I would appriciate any input on this. I have no idea why they are so
different. Both have the same lenght and both are fast stochastic. How many
different versions are there and which one is better?

Thanks for the help

Ron