View Single Post
  #8 (permalink)  
Old 11-08-2006, 05:53 AM
Tross Tross is offline
Senior Member
 
Join Date: Oct 2006
Posts: 127
Tross is on a distinguished road
Downloaded the VTTrader, opened the indicators, copied the formula's. I just wanted to be sure we were using the exact formula that you were using in VT.

BTW, with the chart up, and those indicators on it... I would have closed 6 profitable trades, That was on a 30 minute chart also.

Do you use a 30 minute chart for your system ?

Heres they are, someone might make these indicators before I do. It's where we have to start, yes?

VIDYA from VT Trader

Code:
UpDay:= Sum((Price-Ref(Price,-1))*(Price>Ref(Price,-1)),Periods);
DownDay:= Sum((Ref(Price,-1)-Price)*(Price<Ref(Price,-1)),Periods);
_CMO:= 100 * ((UpDay-DownDay)/(UpDay+DownDay));

SC:= 2/(pds+1);
absCMO:= abs(_CMO)/100;

Vidya:= If(BarCount()<=(pds+1), Price, (SC*AbsCMO*Price) + (1-(SC*AbsCMO)) * PREV);
DEMA from VT Trader

Code:
_Dema:= 2 * mov(pr,len,mat) - mov(mov(pr,len,mat),len,mat);
There are other examples of Vidya code around. I am really interested in making these indicators, but time is an issue!!
Reply With Quote