PureBytes Links
Trading Reference Links
|
When putting this system on a P&F Chart is shows that it is 90%
profitable in many markets. The main point here is how realistic is this
system ?
MEM
INPUT: LENGTH2(8), STDDEVUP(.75), STDDEVDN(-.75) ,length(7);
IF BOLLINGERBAND(c,LENGTH2,STDDEVDN) CROSS ABOVE
BOLLINGERBAND(c,LENGTH,STDDEVDN) THEN BUY CLOSE STOP;
iF BOLLINGERBAND(c,LENGTH2,STDDEVDN) CROSS BELOW
BOLLINGERBAND(c,LENGTH,STDDEVDN) THEN EXITLONG CLOSE STOP;
if midpoint(open,9) cross below Bollingerband(c,length,stddevup) then
sell (close) stop;
if midpoint(open,9) cross above Bollingerband(c,length,stddevup) then
exitshort (close)stop;
|