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.
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
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