NON-INDICATOR (indicator-less) Trading

Discussion in 'Strategy Building' started by Jahajee, Nov 14, 2008.

  1. [​IMG]
     
    #11     Nov 15, 2008
  2. ok, remove the lines and trade with HHs and LLs
    Are thes indicators also?

    Well, then trade with O, H, L, C,

    But... these are also derived from prices during the periodicity of a bar? well, let's trade ticks? no.. just Last price.... I give up.
     
    #12     Nov 15, 2008
  3. MarkBrown

    MarkBrown

    true indicator-less trading

    advancing issues nyse, when on the top of the hour adv > 1850 (opto param yourself) be a buyer otherwise be a seller.

    mb

    ps don't even need a computer your very welcomed.
     
    #13     Nov 16, 2008
  4. I will put up this on my screen tomorrow and see how it goes...

    Only advancing issues? Not declining issues for sell?


    Thanks.
     
    #14     Nov 16, 2008
  5. MarkBrown

    MarkBrown

    #15     Nov 16, 2008
  6. #16     Nov 16, 2008
  7. Two things-

    First if you use those square like moving average lines than you will certainly lack the ability of getting a great price. You will still get a good price if the trend continues but if it doesn't than you could be in some trouble.

    Secondly don't expect daily charts to look that perfect for trend trading. The successful trader is the one that can establish whether the price is trending or just moving sideways.
     
    #17     Nov 16, 2008
  8. omniscient

    omniscient Guest

    i'm not a coder, but it looks like it may be in here somewhere.

    hth
     
    #18     Nov 16, 2008
  9. MarkBrown

    MarkBrown

    input:test_level(1385);
    { Data1 = S&P 500 }
    { Data2 = NYSE Advancing Issues }
    input:notbef(Sess1FirstBarTime),notaft(1505{Sess1EndTime});

    {time filter to prevent entry on first or last bar on chart in session}

    if t>=notbef and t<notaft then begin if c data2>test_level then buy this bar else sell short this bar;end;

    {you may have to change the time settings for your time zone and optimize the test_level - also use a little known setting in ts called natural hour}

    {code by markbrown dot com}
     
    #19     Nov 16, 2008
  10. ericadam

    ericadam

    any chance of the code in NT (ninjascript -- C# ))
     
    #20     Nov 17, 2008