Combining RSI With RSI
The article by Peter Konner in this issue, “Combining RSI With RSI”, describes how to combine two RSI indicators to trade long-term uptrends and short-term corrections, all in one strategy.
Using Tradecision’s Strategy Builder, one needs to create the RSI with RSI Strategy:
Long Rule:
return RSI(C,17) >= 60 and C > SMA(C,40)
or RSI(C,5) >= 60 and C > SMA(C,10) and RSI(C,17)
< 60;
Short Rule:
return RSI(C,17) <= 40 and C < SMA(C,40)
or RSI(C,5) <= 40 and C > SMA(C,10);
|
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.
|