The 350 Swing Trade
The article by Dr. Barbara Star in this issue, “The 350 Swing Trade”, demonstrates decreasing the indicators’ lookback period to increase the sensitivity to smaller price moves and identify the beginning and end of a short-term price swing.
Using Indicator Builder, one needs to create the RSI MA indicator:
RSI MA indicator:
in
RSILength:"Enter the RSI Length:", 3;
SMALength:"Enter the SMA Length:", 3;
end_in
return SMA(RSI(C,RSILength),SMALength);
Then one needs to create the 350 Swing Alert Strategy using Tradecision’s Strategy Builder:
Entry Long Signal:
var
SMALength:=3;
RSILength:=3;
end_var
return SMA(RSI(C,RSILength),SMALength) <= 20;
Entry Short Signal:
var
SMALength:=3;
RSILength:=3;
end_var
return SMA(RSI(C,RSILength),SMALength) >= 80;
|
Download to import into Tradecision. 
How to use this indicator in Tradecision:
- Click Download.
- Save this indicator in a safe location on your hard drive.
- Open Tradecision and in the Tools menu click Indicator Builder.
- In the Indicator Builder dialog, click Import, locate the saved file and then click OK.
The indicator will be added to the Custom Indicators list.
|