PureBytes Links
Trading Reference Links
|
Just thought this little bit of code might be of interest to some realtraders
as an rt project. I am not a programmer, so someone needs to take this and
run with it. What needs to be done is additional code added sot the plot will
start at a specified date. Plus other additional bells and whistles. Maybe
someone could even turn it into a trading system. Then how about making it
run on intraday data. The basic idea comes from Levine at
http://www.winmidas.com. The redline is a support level that is anchored to a
change in trend. Primary support is at 7500.
BobR
Inputs: PRICE(0.5*(H of data1 + L of data1)),M(VOLUME OF DATA1);
VALUE1 = cum( PRICE*M)/cum(M);
End;
Plot1(value1,"");
Attachment Converted: "c:\eudora\attach\CUMVOL.gif"
|