[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Plugging vendors and their systems, Part II



PureBytes Links

Trading Reference Links

Of all the daytrading systems out there, I've found that Richard
Saidenberg's "R Breaker" is the only system that can make money
consistently, in daytrading the S&P 500 futures. Since he's on this list,
let's give him 3 "All right!! Way to go !!", a couple of "Hurrah!!" and 1
"Congratulations!".

Another daytrading system that is being adverstised in Technical Analysis of
Stocks and Commodities is the %C-DT series. Supposedly, in an old
advertisement, it traded 1 contract from January 2, 1996 to December 10,1996
and made a net profit of $63,275 in 103 trades (or $615 per trade). It is
leased for $495/quarter, $895 for 6 months or $1,695 per year. If you feel
like it, you can make a contribution to Jack Cahn of Creative Breakthrough,
Inc. at (561)776-0895. Hurry! The number of %C-whatever leases made
available will be limited............

--------------------------------------------------
{Function: PercentC2}
Inputs:lng(numericsimple);
Value1=High;
Value2=Low;
Value3=Value1-value2;
Value4=Summation(value3,lng);
Value5=Highest(Value1,lng);
Value6=Lowest(value2,lng);
If value5-value6>0 then Value7=value5-value6;
Value8=(value4/value7);

if Value8 <> 0 then Value9 = Log (value8);

Value10=value9/log(lng);
Value11=Value10*100;
@PercentC2=Value11;
-------------------------------------------------------
{Indicator: %C}
input:ma(3),Lng(14);
Value1=PercentC2(LNG);
Value2=average(value1,ma);
Plot1(value1,"able");
Plot2(value2,"ma");
Plot3(55,"");
Plot4(35,"");


{input:ma(3),Lng(14);
Value1=TrueHigh;
Value2=Truelow;
Value3=Value1-value2;
Value4=Summation(value3,lng);
Value5=Highest(Value1,lng);
Value6=Lowest(value2,lng);
Value7=value5-value6;
Value8=(value4/value7);
Value9 = Log (iff (Value8 <> 0, value8, 1 point));
{Value9=Log(value8);}
Value10=value9/log(lng);
Value11=Value10*100;

Value13=Avg001(value11,ma);
Plot1(value8,"able");}
{Plot2(value13,"ma");}

-----------------------------------------------
{System: %C-Opti Scapler}

Input: trlng(10),VF(.95), trlng2(6),VF2(1.4);
Value91=percentc2(19);
Value92=Highest(truerange,trlng);
Value93=Highest(truerange,trlng2);
Value95=Average(close,4)+(value92*vf);
Value96=Average(close,4)-(value93*vf2);

If value91>50 and value91[1]<50 and time>0945 and time<1400 then
Buy at ( "%C-Scalper le" ) value96  limit;
If value91>43 and value91[1]<43 and time>0945 and time<1345  then
Sell at ( "%C-Scalper se" )  value95 limit;

---------------------------------------------------------------------