PureBytes Links
Trading Reference Links
|
thanks for the reply...
let me try and be more specific... I want a numerical counter inside
an existing indicator that will show me how many seconds are left in
a 2 minute bar >> (for example) I use 1 min 5 min 9min and 30 minute
timeframes and i am trying to generate signals towards the last part
of the bar before it prints... So i want this counter to auto reset
after the bar prints to start counting time remaining in the current
bar... if that makes sense
--- In amibroker@xxxxxxxxxxxxxxx, "Stephane Carrasset"
<s.carrasset@xxxx> wrote:
> I don't understand what timer you want exactly...
> so hard to answer
>
> Click=SelectedValue(BarIndex());
> nBarsLeft= LastValue(BarIndex()) - Click ;
> NumToStr(nBarsLeft,1.0);
> TimeLeft=Interval()*nBarsLeft;
> NumToStr(TimeLeft,1.0);
> Plot(TimeLeft,"test",3,1);
>
>
> stephane
>
> > Not sure if it goes to 30 minutes, From WoodiesCCI Club
> >
> > http://www.visualmarkets.com/downloads_clock.html
> >
> > http://woodiescciclub.com/index.html
> >
> > Ray
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "coba702002" <coba702002@xxxx>
> wrote:
> > > Anyone willing to share their code for a countdown timer that i
> can
> > put
> > > in an indicator for various time frames from one to 30
minutes???
> > >
> > > thanks
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|