 |
Raju Harchandani
2010-11-04 08:23:23
|
|
You never fail to amaze me with ur speed
The formula that i use is
var1 = cross(30, rsi(14));
var2 = cross(20, StochSlowk(5,3,_MaSma));
AddColumn("RSI", RSI(14));
AddColumn("StochSlow", StochSlowk(5,3,_MaSma));
AddColumn("Date", Day());
AddColumn("Month", Month());
AddColumn("Year", Year());
filter = (var1) && (var2);
It is the day,month and Year, so tht i can go back and check on the chart
|
|