PureBytes Links
Trading Reference Links
|
Hello,
i tried something but code doesn't reset the Ticknumber after NewBar.
I cannot see the mistake.
Anybody can help?
PrevDT = StaticVarGet("DateTime");
DT = LastValue(DateTime());
NewBar = DT != PrevDT;
StaticVarSet("DateTime",DT);
prevVol = StaticVarGet("Vol");
VOL = LastValue(V);
NewTick = Vol != PrevVol;
StaticVarSet("Vol", VOL);
if( NewBar ) {
StaticVarSet("Ticknumber", 0);
TN = 0;
}
if( NewTick AND NOT NewBar) {
TN = StaticVarGet("Ticknumber");
StaticVarSet("Ticknumber", ++TN);
}
Regards
Robert
--- In amibroker@xxxxxxxxxxxxxxx, "rhoemke" <robert@xxx> wrote:
>
> Hello,
>
> how can i find out how many ticks are already in a tickbar?
> I.e. a 30 tick bar and how do i know that it has already X-ticks "in
it"?
>
> Thx.
>
> Regards
> Robert
>
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/
|