Spydertrader's Jack Hershey Futures Trading Journal

Status
Not open for further replies.
Anyone yet with Tradestation indicator of this?
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.
 

Attachments

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
 
Quote from optionpro007:

Greetings guys,

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

Thanks!

try a 1 min advanced chart with symbol (ym #f - $INDU - 68) - be careful with the spaces....
 
Quote from ralphbass:

Does anyone have the STR/SQU set up in TradeStation? Would you share your eld and workspace?

REB

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
 
Status
Not open for further replies.
Back
Top