Spydertrader's Jack Hershey Futures Trading Journal

Discussion in 'Journals' started by Spydertrader, Dec 30, 2006.

Thread Status:
Not open for further replies.
  1. txuk

    txuk

    Here's a simple TS indicator to get you started.
    Create a 1min chart of $INDU. Add symbol YM. Insert this indicator. Format the indicator to style histogram. Adjust the offset parameter as needed.
     
    #2681     Apr 2, 2007
  2. ralphbass

    ralphbass

    I'm having trouble replying to your PM. I get "Sorry! You cannot send that message at the moment because the administrator has specified that you may only send one message every 60 seconds."

    REB
     
    #2682     Apr 2, 2007
  3. ivob

    ivob

    Chart for this morning.



    regards,
    Ivo
     
    #2683     Apr 2, 2007
  4. 9:25am PDT...

    The volitality is tearing me to pieces...

    :D

    cj...
     
    #2684     Apr 2, 2007
  5. Greetings guys,

    Does anybody know how to get the str/squ indicator working for esignal ?

    Thanks!
     
    #2685     Apr 2, 2007
  6. dkm

    dkm

    try a 1 min advanced chart with symbol (ym #f - $INDU - 68) - be careful with the spaces....
     
    #2686     Apr 2, 2007
  7. this might work:

    [LegacyColorValue = true];

    input: FV(68.18), YM(c data1), INDU(c data2);
    var: diff(0);

    diff = ym - indu - fv;

    if diff > 0 then begin
    setplotcolor(1, darkgreen);
    end;
    if diff < 0 then begin
    setplotcolor(1, darkred);
    end;
    setplotwidth(1,1);

    if time>0830 then begin
    if diff>=2 then begin
    setplotwidth(1,4); setplotcolor(1,green);
    alert(symbol+" +2 Str / Squ");
    end;
    if diff <= -2 then begin
    setplotwidth(1,4);
    setplotcolor(1,red);
    alert(symbol + " -2Str / Squ");
    end;
    end;
    plot1(diff,"Dif");
    plot2(0);
    plot3(2);plot4(-2);

    use data1 for YM and data2 for INDU.

    Doug
     
    #2687     Apr 2, 2007
  8. ralphbass

    ralphbass

    Here is the code up and running in TS. Now, how does one use something like this?

    REB
     
    #2688     Apr 2, 2007
  9. I think this works. Thanks!
     
    #2689     Apr 2, 2007
  10. Avi 8

    Avi 8

    Here is today's ES

    -Mike
     
    #2690     Apr 2, 2007
Thread Status:
Not open for further replies.