PureBytes Links
Trading Reference Links
|
thanks dave. that really helped! all set.
jh
-----Original Message-----
From: DH [mailto:catapult@xxxxxxxxxxxxxx]
Sent: Monday, October 23, 2000 8:24 PM
To: Omega List
Subject: Re: troubles with paintbars... please help!
If you're using power editor, forget paintbars and showmes. They are
just subsets of indicators so you can code an indicator that does the
same thing and more.
if whatever then begin
plot1(open,"open"); { plot type = left tick, color = whatever}
plot2(high,"high"); {type bar high, color whatever}
plot3(low,"low"); {type bar low, color and thickness same as plot2}
plot4(close,"close"); {type right tick, color whatever}
end;
--
Dennis
|