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

Re: Tick-min indicator question



PureBytes Links

Trading Reference Links

At 6:27 PM +0200 4/24/02, Shraga(Feivi-Philip) wrote:

>Can anyone think of a way to plot an indicator which will show how
>many minutes every tickbar took?

Try this:

  Vars: Min1(0), Mins(0);
  Min1 = TimeToMinutes(Time);
  Mins = Min1 - Min1[1];

  Plot1(Mins, "1");

Bob Fulks