log in     sign up for free
 
To be a money master, you must first be a self-master.
J. P. Morgan
 
 
Home
systems (284)
 
Special offer: buy MetaStock (try for free)   |   Reuters QuoteCenter Real-Time Data (get a free month)   |   EOD 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

SMI Oscillator

Formula for: TradeStation

indicator


 

 

Views:  2020

Added: August 01, 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
This concept is based on William Blau's simple trading system, where one would take long trades when SMI_Trade value is above Zero (or goes positive) and the SMI oscillator has same slope going in the same direction as the trend.
One would exit long if the SMI_Trade turns to Zero or SMI oscillator reverses.

Opposite argument for short trade.

Hope my explanation is of help.

 

 



Code:

Type : Function, Name : SMI

input:
length1(NumericSimple),
length2(NumericSimple),
length3(NumericSimple);
var:
HH(0),
LL(0);

HH = Highest(H,length1);
LL = Lowest (L,length1);

SMI = 100 * (XAverage(XAverage(C-(0.5*(HH+LL)),length2),length3) /
(0.5 * XAverage(XAverage(HH-LL,length2),length3)));





Type : Indicator, Name : SMI Oscillator

input:
length1(2),
length2(25),
length3(12),
signal(5);

Value1=SMI(length1,length2,length3);
Value2=XAverage(Value1,Signal);

Plot1(Value1,"SMI");
Plot2(Value2,"Signal");




 





Source: https://www.tradestation.com

 

View similar (indicator for TradeStation):

Dunn's Density Indicator II
CCI - Stochastic (CCI-STO)
Bond Futures LR Surfing Indicator
Color on MACD Histogram II
VIDYA Variation
RAVI
Balance Of Power (BOP)
Moving Averages with Resistance and Support
SaittaTrend
Dunn's Density Indicator
...
 
 
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