PureBytes Links
Trading Reference Links
|
considering today's market this may be of interest.
{Big Dipper SP System}
{Copyright (c) Phil Lane, 1999}
{Intended for DEMO only - Futures trading is extremely risky}
{The Big Dip}
if (c<o) and (c<o)[1] and (c<o)[2] and (c<o)[3]
then begin
buy 2000/(Xaverage(TrueRange,10)*Bigpointvalue) contracts;
value1=l -1.5*xaverage(truerange,3);
end;
{Emergency Exit}
exitlong value1 stop;
{Breakeven stop}
if barssinceentry>=2 and positionprofit>0 then exitlong entryprice stop;
{Trailing stop}
if barssinceentry>=3 then exitlong l -0.1*xaverage(truerange,3) stop;
|