Ah ok, allora scrivi questo e cambia i colori nel settaggio dell’indicatore
<pre class=”lang:probuilder decode:true “>singleRSI = 0 //boolean value 0=false, 1=true
periodRSI = 14
periodTMArsi = 4
typeMA1 = 0 //MA type selection
periodMA1 = 4
shiftMA1 = 0
typeMA2 = 0 //MA type selection
periodMA2 = 5
shiftMA2 = 0
typeMA3 = 0 //MA type selection
periodMA3 = 13
shiftMA3 = 2
// — end of settings
indi = RSI[periodRSI](customclose)
TEMArsi = TEMA[periodTMArsi](indi)
MA1 = average[periodMA1,typeMA1](indi)[shiftMA1]
MA2 = average[periodMA2,typeMA2](indi)[shiftMA2]
MA3 = average[periodMA3,typeMA3](indi)[shiftMA3]
if singleRSI then
final = TEMArsi
else
final = (TEMArsi+MA1+MA2+MA3)/4
endif
if final > 60 then
result=1
elsif final<40 then
result=-1
else
result=0
endif
return result STYLE(histogram,1), 0