PureBytes Links
Trading Reference Links
|
sorry for double postings. It seems that sometimes they delay Emails
and sometimes they don't and sometimes they don't send them at all
here in Belgium ....
--- In amibroker@xxxxxxxxxxxxxxx, "Edward Pottasch" <empottasch@xxx>
wrote:
>
> try changing the color and/or the times. If you are on Eastern time use:
>
> 093000
> 160000
>
> if you have a background colour that is white you will need to
change colorwhite to eg colorgreen
>
> ed
>
>
>
> ----- Original Message -----
> From: ges x
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Thursday, September 06, 2007 3:37 PM
> Subject: Re: [amibroker] Coding question: How do identify
individual days in RT data...
>
>
> Thanks for the code. As it is, it displays nothing, so there must
be some mistake in it. I'll look at it and see if I can figure it out.
>
>
>
>
> On 9/6/07, Edward Pottasch <empottasch@xxx> wrote:
>
> I googled for it and adjusted it a little bit, rgds, ed
>
>
> begvol = TimeNum() == 153000 ;
> endvol = TimeNum() == 220000;
> CountWhile = Flip(begvol,endvol);
> Cumvol = IIf(CountWhile, Sum(V,BarsSince(begvol)), 0);
>
> //Plot(Cumvol,"Cumvol",colorWhite,styleHistogram);
> PlotOHLC( Cumvol, Cumvol, 0, 0 , "Cumvol", colorWhite,
styleCloud );
>
>
>
>
>
>
> ----- Original Message -----
> From: ges
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Thursday, September 06, 2007 5:13 AM
> Subject: [amibroker] Coding question: How do identify
individual days in RT data...
>
>
> I want to be able to sum or cum various values on RT charts.
>
> For example, I'd like to be able to compute a cumulative value for
> volume for each individual day on a multi-day realtime chart. The
> first bar at the open, the last bar at the close, but a new cum
> starting each day.
>
> I have to admit I am confused by all the date/time functions
and how
> to separate out an individual day.
>
> Any suggestions?
>
> Thanks,
>
> ges
>
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|