Metastock Indicator Formula |
Stochastic RSI with AutoFilter |
Standard StochRSI with filtering provided by buy/sell limits; gives less frequent signals; sensitivity gained by the optimization that results in lower StochRSI parameter(s). |
Formula: |
Enter Long = Close Short:
F:= RSI(opt1);
NUM:= F-LLV(F,opt1); DEN:= HHV(F,opt1)-LLV(F,opt1);
Cross( NUM/DEN, opt3)
Close Long = Enter Short:
F:= RSI(opt1);
NUM:= F-LLV(F,opt1); DEN:= HHV(F,opt1)-LLV(F,opt1);
Cross(opt2, NUM/DEN )
opt1: 15 to 95, step 2
opt2: 0.1 to 0.5, step 0.1
opt3: 0.5 to 0.9, step 0.1 |
|
Did you know ...
How do I use MetaStock's scanning feature to find securities with specific technical conditions?
To use MetaStock's scanning feature, go to the "Explorer" or "Scanning" menu, select the desired technical conditions, define the scan criteria, and run the scan to find securities matching the specified technical conditions.
|