Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 1,960
Thanks: 92 times Was thanked: 155 time(s) in 150 post(s)
|
Barbara Star’s article, “The 350 Swing Trade,” discusses a
trading methodology built around a 3 period RSI. This includes several indicators, coloring
the price bars, and placing diamonds above and below the price bars.
Almost all the indicators are built into MetaStock. The RSI 3 is just the normal RSI set to use 3
time periods. The RSI MA is a 3 period
simple moving average of the RSI 3. the Donchian Channels are not built in.
- Tools menu, select New to open the Indicator Editor
for a new indicator.
-
x:= Input("periods",2,100,20);
HHV(H,x);
LLV(L,x);
(HHV(H,x)+LLV(L,x))/2
- Ok to close the Indicator Editor.
The coloring of the price bars and the diamonds can be done
with an expert advisor.
- Tools > New to open the Expert Editor.
- Highlights tab.
- New to create a new symbol.
- Color to “Green”.
-
RSI(3)>50
- OK
- New to create a new highlight.
- Color to “red”.
-
RSI(3)<50
- OK
- Symbols tab.
- New to create a new symbol.
-
Mov(RSI(3),3,S)<20
- Graphics tab
- Diamond
- Green
- Below Price
Plot”
- Below Symbol”
- OK
- New to create a new symbol.
-
Mov(RSI(3),3,S)>80
- Graphics tab
- Diamond
- Red
- Above Price
Plot”
- Above Symbol”
- OK
- OK to close the Expert Editor.
William Golson MetaStock Support
|
|
|
|
Users browsing this topic |
Guest (Hidden)
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.