in Search

help with this trading system

Last post 03-16-2009, 11:57 by zigzag. 4 replies.
Sort Posts: Previous Next
  •  03-09-2009, 21:21 29148

    help with this trading system

    Hello

    I have found a system in Forum a while back that visually seems to capture some very nice moves in price trends (loosely defined).  The original system (with some of my own tweaks) is as follows:

    atrprd:=Input("ATR Period",5,20,20);
    numatrs:=Input("Num ATRs",.5,4,2);
    prd:=Input("Mov Avg Prd",1,20,3);

    perc:=numatrs*ATR(atrprd)/C;

    var1:=If(( Mov(C,prd,S) *(1-perc))>PREV, Mov(C,prd,S) *(1-perc),If(( Mov(C,prd,S) *(1+perc))<PREV, Mov(C,prd,S) *(1+perc),PREV));

    LE:=ref(cross(L,var1),-1);

    LX:=ref(cross(var1,L),-1);

    SE:=ref(cross(var1,H),-1);

    SX:=ref(cross(H,var1),-1);

    When I run it on daily SPY from 1/1/97 to present (trade at Open, no delay, 1 position, 100% equity, no margining, $10 per trade), however, I get a terrible equity curve that doesn't agree with my visual inspection of many of the trade signals.

    Has anybody looked into similar systems?  Any suggestions about the system above?

    Many thanks.

    ZigZag

  •  03-11-2009, 9:05 29160 in reply to 29148

    Re: help with this trading system

    LE:=Ref(Cross(L,var1),-1);LE;

    LX:=Ref(Cross(var1,L),-1);LX;

    SE:=Ref(Cross(var1,H),-1);SE;

    SX:=Ref(Cross(H,var1),-1);SX;


    elec@otenet.gr
  •  03-12-2009, 8:32 29167 in reply to 29160

    Re: help with this trading system

    hi elec

    thanks for your reply.

    i don't quite understand what you are trying to tell me.  you copied the exact same trading rules from my original message.

    i am hoping that someone improved that system.  it seems to have potential, perhaps with some tweaks or in conjunction with other indicators.

    thanks

    ZigZag

  •  03-16-2009, 9:12 29194 in reply to 29148

    Re: help with this trading system

    Hi again zz,

    When doing a system analysis, try this: Explain in words HOW the system works and try to understand WHY the system as designed should work.  As the system is not working for you, write in words why it isn't working.  Compare the first step with the second step and see the problem...

    This will give you a greater insight into why this system may or may not work for you, as is or even after some modification.

    Ask yourself a few questions like: where is the risk management and money management in this system (entries and exits are not a system IMHO)?  Why is the same indicator used for entries and exits?  Why is only one indicator used? Surely this cannot be the panacea indicator that can be applied to all charts in all time frames to give perfect signals?  What about some support from other indicators/data/patterns?


    Hope this helps.

    wabbit Big Smile [:D]


    "The question of whether a computer can think is no more interesting than the question of whether a submarine can swim."
    Edsgar W. Dijkstra

     

    MS: 6.52 EOD, 7.x EOD, 8.0 PRO, 9.2 PRO w/QC, 10 PRO w/QC C, 11 PRO w/QC & MDK
    For custom MetaStock programming : http://www.wabbit.com.au
    My SkyPE status :
    My SkyPE account : wabbit.com.au

  •  03-16-2009, 11:57 29197 in reply to 29194

    Re: help with this trading system

    Wabbit

    Many thanks for your post - insightful and helpful as usual.

    I did test the system and posted the question in Forum in haste.  Upon further thought, some reseach into using this system in conjunction with a trending indicator should yield interesting results.

    Rgds

    Leonardo

View as RSS news feed in XML