Dear All
A small help needed for exploration,I am trying to explore to sort out as per T1 or T2,but not getting it.
A small help needed for exploration,I am trying to explore to sort out as per T1 or T2,but not getting it.
Code:
TF=(ATR(1)*100/ATR(14));IQF=ATR(20)*100/Close;
T1=TF>2 AND IQF<100;
T2=TF>2 AND IQF>100;
Filter=T1 OR T2;
AddColumn(C,"close",1.2);
AddColumn(TF,"TF",1.2);
AddColumn(IQF,"IQF",1.2);
AddColumn(IIf(T1,T1,Null) ," High " ,6.2,1.2,colorGreen);
AddColumn(IIf(T2,T2,Null)," Low ",6.2,1.2,colorOrange);