Scusami Nicolas,
ma non so come fare a trasformare in screener l’indicatore PRTBANDSUP da te messo come primo esempio in PRT bands,
per trovare il punto di cambio trend con uno screener.
Allego l’esempio che trovo sul sito
Grazie per l’aiuto che potrai darmi
Quando devi postare del codice posta il TESTO del codice (non formattato), usando sempre il pulsante “Insert PRT code“. Grazie 🙂
Eccolo:
up = PRTBandsUp
dn = PRTBandsDown
if close crosses over up and trend<=0 then //price breaks the upper band
trend=1 //new bullish trend
elsif close crosses under dn and trend>=0 then //price breaks the lower band
trend=-1 //new bearish trend
endif
signal = trend<>trend[1] //trend inversion signal
SCREENER[Signal]