PureBytes Links
Trading Reference Links
|
The formula below is Dimitris' Optimized RSI. Can someone write a line of
code for me which will allow me to see the WriteVal set for X1, Dbuy and
Dsell on the screen that comes up after optimization? Was that clear? Don't
laugh. Next year I am going to take a class in writing code (yeah, sure!)
Thank you.
Nate
X1=10;
Dbuy=10;
Dsell=10;
MaxGraph=12;
s1=MA(RSI(X1),3);
Graph0=s1;
AVRSI=MA(s1,50);
Graph9=AVRSI-Dbuy;
Graph10=AVRSI+Dsell;
Graph8=AVRSI;
Graph8Style=8;
Graph8BarColor=2;
Graph9Style=Graph10Style=8;
Graph9BarColor=5;
Graph10BarColor=4;
Title=Name()+ "RSI Graph" + " Green +DBuy" + " Red -DSell" +
", White is Avg"
+ " Today's Close : " +"(" +WriteVal(Close,format=1.2)+")" +" Change from
Yesterday : " +"("+WriteVal(Close - Ref(Close,-1)) +")";
|