[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: StochasticPop



PureBytes Links

Trading Reference Links


> I am trying to construct a Paint Bar indicator that will paint the bars
Red
> when the SlowD is below 20, and Blue when the SlowD is above 80.

hi,

try this.

{**********************************************}

inputs: topcolor(blue), botcolor(red);

if slowd<20 then plotpaintbar(h, l, "", botcolor);
if slowd>80 then plotpaintbar(h, l, "", topcolor);

{*********************************************}

regards

michael