log in     sign up for free
 
If you can't take a small loss, sooner or later you will take the mother of all losses.
Ed Seykota
 
 
Home
systems (284)
 
Special offer: buy AmiBroker and EOD+Real-Time Data
 
Formula Library
 
AmiBroker
MetaTrader
MetaStock
TradeStation
Wealth-Lab
NinjaTrader
 
add your formula
System Library
 
 
Account login
Your email:
Password:
 
Log in
New to s4t? Sign up.
If you forgot your password click here.
Search the Web
 
Custom Search

TAStoch Indicator

Formula for: TradeStation

indicator


 

 

Views:  1527

Added: August 06, 2008
 
Rate this code:  Rate: 1 Rate: 2 Rate: 3 Rate: 4 Rate: 5
This formula has not been rated yet
 

email this link

 
 
Tags: TradeStation, indicator
 
Your Ad Here

Subject: Re: RJP < .a real deal ? i think not !
Author: cvinton
Date: 8/29/98 10:38 PM
TJ wrote:
nothing more than a momentum crossover system with a stochastic like filter to keep you in the trend

Hmm... What exactly is a momentum crossover system? If it's analogous to moving average crossovers, then the buy signal would be when, for example, the 5-day momentum crosses over the 20-day momentum. Is that the idea, or am out in left field here?

Hmm... Suggestions on how to use stochastics to keep you in the trend? Perhaps use a larger time-frame and then make sure the value is within a certain range?

Thanks all,

Cab

Stochastic trend indicator.

. To: "cvinton@xxxxxxxxxxxxxx"
. Subject: Stochastic trend indicator.
. From: "Sentinel Trading"
. Date: Sun, 30 Aug 1998 11:45:26 -0400
. cc: "Omega-List"
. Importance: medium
. Priority: normal
. Resent-Date: Sun, 30 Aug 1998 08:44:39 -0700
. Resent-From: omega-list@xxxxxxxxxx
. Resent-Message-ID: <"u9Hy02.0.QV.dDNwr"@mx1>
. Resent-Sender: omega-list-request@xxxxxxxxxx

Using stochastic as a trend indicator requires that it be modified. Several well known charting programs package it in this fashion so it is nothing new. Usually a 14 period %K and a 7 period %D is a good place to start. It uses two functions as posted below. I'll send an ela if requested.Shorter periods produce a very smooth oscillator and Using a longer %D than %k is also something worth looking at it produces interesting crosses of K and D.

 

 



Code:

Type : Function, Name : TAFastK

Inputs: AvgLen(NumericSimple),Length(NumericSimple);

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

if Value2 > 0 then
TAFastK = (Value3 - Value1) / Value2*100
else

TAFastK = 0;





Type : Function, Name : TAFastD

Inputs: AvgLen(NumericSimple),Length(NumericSimple);
Vars: Factor(0);

if CurrentBar <=1
then begin
Factor = 2 / (3 + 1);
TAFastD = TAFastK(AVGLEN, LENGTH);
end
else
TAFastD = TAFastD[1] + (Factor * (TAFastK(AVGLEN,LENGTH) - TAFastD[1]));






Type : Indicator, Name : TAStoch Indicator

Input: AvgLen(13), LengthK(5), LengthD(9);

Plot1 ( TAFastK(AVGLEN, LENGTHK),"TAK");
Plot2 (TAFastD(AVGLEN, LENGTHD),"TAD");
Plot3 (35,"BuyZone");
Plot4 (80,"SellZone");


 





Source: http://www.purebytes.com

 

View similar (indicator for TradeStation):

VIDYA/CDMA
MB/ADX EZ Dynamic
Gap-Trading System
Stochastic Momentum Indicator
Keltner Bands
VIDYA Variation
TrendArea Indicator
Gap-Trading System
Dunn's Density Indicator II
MATCH
...
 
 
all formulas for TradeStation
all formulas

 

 

Email to friend

Top

 

     
However we try to maintain hiqhest possible level of service - most formulas, oscillators, indicators
and systems are submitted by anonymous users.
Therefore S4T™ does not take any responsibility for it's quality.
If you use any of this information, use it at your own risk. You are responsible for your own trading decisions.
Be sure to verify that any information you see on these pages is correct, and is applicable to your particular trade.
In no case will S4T™ be responsible for your trading gains or losses.
 
Privacy note | (c) copyrights systems4trading.com 2006-2012