PureBytes Links
Trading Reference Links
|
Doug Deming wrote:
> > Carl Oberman wrote: I tried the omega trendline ELA on my 5 minute
> > chart today, but it left
> > alot to be desired. especially if you want trendlines on the trend
> > for the
> > last hour. any comments or suggestions?
>
> We can program your study to automatically track the last 1 hour of
> 5-min bars. Let us know if we can assist you. You can call us at
> 808-875-4558.
>
> Thank you,
> Doug Deming, IEC
>
==================================================
{This code may work for you and its free form me : -) Mark Brown}
input:rotate(60);
var:go(0),new(0);
if d>d[1]or currentbar=1 then begin
if go=0 then go=1 else go=0;
new=timetominutes(sess1starttime)+rotate;end;
if timetominutes(t)>new then begin
if go=0 then go=1 else go=0;
new=new+rotate;
end;
if go=1 then begin
plot1(insert whatever you want here,"time");
end;
===================================================
--
Demand Year 2000 Fix Delivery Date for Omega Products!!!
And a proper beta test of TS 5.0 before it is unleashed to the public!
Also fix the symbol universe settings in the server!!!
Please, send an email to mailto:2000@xxxxxxxxxxxxx and provide
1. Name of Registered User
2. Name of product
3. Block I.D. Number if product has one.
4. Include any comments you wish for Omega if you have any.
|