View Single Post
  #3 (permalink)  
Old 10-28-2005, 08:46 AM
peregrinus peregrinus is offline
Junior Member
 
Join Date: Oct 2005
Posts: 6
peregrinus is on a distinguished road
Cool

Hi, thx for reply.
Find two indicators enclosed. One of them is TRSI, which counts third and fourth grade MA of RSI, the second one is LaGuerre RSI.
The exact conditions of Expert Advisor should be like this:

if (MA3[i]>MA3[i+1] && RSI[i]>MA4[i] && LRSI[i]>25 && LRSI[i+1]<25) LongPosition
if (MA3[i]<MA3[i+1] && RSI[i]<MA4[i] && LRSI[i]<75 && LRSI[i+1]>75) ShortPosition

where MA3,MA4 are moving averages of TRSI and LRSI is LaGuerre RSI.
TIA
Attached Files
File Type: rar indicators.rar (1.7 KB, 177 views)
Reply With Quote