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

Re: Tick Count in Radar Screen: Detail



PureBytes Links

Trading Reference Links

you got me going. so I created an indicator with your code. It created
Tickcount columns with Ttlticks and up and dn like it should. using end of
day data and a data compression of 100 ticks I get for IBM 5100 Ttlticks,
5100 up and 0 down. maybe real time it will do something different.

Jim Bronke
Phoenix, AZ



----- Original Message -----
From: "Thomas Alexander" <alexander_enterprises@xxxxxxxxx>
To: "Omega List" <omega-list@xxxxxxxxxx>
Sent: Thursday, July 26, 2001 8:27 PM
Subject: Tick Count in Radar Screen: Detail


> Well, you folks are fast with replies! That's wonderful and
> I really appreciate it.
>
> Based on the responses, please allow me to explain further.
> In Radar Screen I have a row with a 100 tick compression.
> In other words, a new tick compression bar is created after
> every 100 ticks. EL has Upticks and Downticks variables
> that displays the number of ticks in a bar. The total
> number of ticks in a bar is Upticks + Downticks. This works
> fine in an indicator in a chart. It only displays a 0 in
> Radar Screen. Here is the code that works in a chart but
> not in RS.
>
> Vars: TtlTicks(0);
> TtlTicks = UpTicks + DownTicks;
> Plot1(TtlTicks,"TtlTicks");
> Plot2(upticks,"up");
> Plot3(downticks,"dn");
>
> Any further thoughts?
>
> Thank you again!
>
>