Here is the TMS system screener to find entries for the strategy, as discussed on the forum here :
./trading-made-simple-tms-system/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
//TDI indicator //parameters : lengthrsi=13 lengthrsipl=2 lengthtradesl=7 //overbought and oversold values of the TDI indicator upperzone = 60 lowerzone = 40 //heiken ashi xClose = (Open+High+Low+Close)/4 if(barindex>2) then xOpen = (xOpen[1] + xClose[1])/2 xHigh = Max(xOpen, xClose) xLow = Min(xOpen, xClose) endif //indicators r = rsi[lengthrsi](close) mab = average[lengthrsipl](r) mbb = average[lengthtradesl](r) yellowMA = average[5](TypicalPrice) yellowMAshifted = yellowMA[2] //screener conditions longCondition = mab crosses over mbb AND mab<=lowerzone AND xHigh>yellowMAshifted shortCondition = mab crosses under mbb AND mab>=upperzone AND xLow<yellowMAshifted SCREENER [longCondition OR shortCondition] |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
What is the timefram you suggest for this kind of indicator? Only in the 15 minutes?
Thank you
Francesco
Any timeframe possible, this indicator is only an RSI with bands made of standard deviation.
hi do you have the TDI indicator pls..
You can download the TDI indicator here: https://www.prorealcode.com/prorealtime-indicators/traders-dynamic-index-tdi/