add more then two true TextSelector
RSI_IND=RSI(10);
BRSI1= RSI_IND < 30 AND RSI_IND >25;
BRSI2= RSI_IND < 25 AND RSI_IND >20 ;
BRSI3= RSI_IND < 20 ;
BRSI4= cross( RSI_IND, 30 );
BRSI5= cross( 30, RSI_IND );
/*testind =
WriteIf( RSI_IND < 25 AND (Ref(RSI_IND,-1) >25 OR Ref(RSI_IND,-2) >25) ,"START BUY ZOON" ,
WriteIf( RSI_IND < 20 AND (Ref(RSI_IND,-1) >20 OR Ref(RSI_IND,-2) >20) ,"CONFIRM BUY ZOON" ,
WriteIf( RSI_IND < 20 AND (RSI_IND > Ref(RSI_IND,-1) AND RSI_IND > Ref(RSI_IND,-2)) ," BUY UP" ,
WriteIf (RSI_IND < 20 , "BUY ZOON :" ," no"))));*/
TextSelector = 1 * BRSI1 + 2 * BRSI2 + 3 * BRSI3 + 4 * BRSI4 + 5 * BRSI5 ;
TextList = "No signal\nSTART BUY ZOON\nCONFIRM BUY ZOON\nBUY ZOON\njust crossed above 30\njust crossed below 30";
Filter=1;
AddColumn(RSI_IND,"rsi",1.2,colorDefault,colorDefault);
AddColumn(BRSI1,"s1",1.2,IIf(BRSI1,colorGreen,colorRed),colorDefault);
AddColumn(BRSI2,"s2",1.2,IIf(BRSI2,colorGreen,colorRed),colorDefault);
AddColumn(BRSI3,"s3",1.2,IIf(BRSI3,colorGreen,colorRed),colorDefault);
AddColumn(BRSI4,"s4",1.2,IIf(BRSI4,colorGreen,colorRed),colorDefault);
AddColumn(BRSI5,"s5",1.2,IIf(BRSI5,colorGreen,colorRed),colorDefault);
//AddTextColumn(testind, "test", 1.0, colorDefault, colorDefault,100);
AddMultiTextColumn(TextSelector, TextList ,"check", 1.0, colorDefault, colorDefault,100);
when two or more are true , it will not show in the exploration
how to add all the true togethers if it is happened ?
i tried to modify fxshrat code but I could not
Exploration Multi timeframe chart
and is it possible to add the value to TextSelector
thank you