PureBytes Links
Trading Reference Links
|
Thomas: PS.
Graham suggested to me the other day that I should add the code below to the
time at price routine. However, that becomes WAY too time consuming (too
many nested loops). I realize that I cannot reference past values of POC
with my current code, which is why I am trying to download those values in
the Explorer window as they occur. But perhaps these problems are related?
Message from Graham:
you would need to create an outer for loop to run the calculation for
each bar. Then apply the POC with [bar] array identifier
for( bar=1;bar<barcount;bar++)
{
for............your code
{
}
}
----- Original Message -----
From: "Thomas Z" <tzg@xxxxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, October 29, 2005 10:18 AM
Subject: Re: [amibroker] Exploration logic
> Hi Chuck,
>
> yes, normally it works this way.
> Send the code so we can tell you or find the reason.
>
> Regards
>
> Thomas
> www.tradingbasis.com
>
>
>
> Chuck wrote:
>> I figured that running exploration with filter = 1 and "all quotations"
>> selected was equivalent to moving the cursor bar across the entire chart.
>> So whatever calculated values show up when the cursor is over a given bar
>> should be the same as those reported on the exploration. I'm finding
>> this
>> is not the case. Does anyone know why this might be happening?
>>
>> Barry suggested adding the line:
>>
>> SetBarsRequired( 1000000, 1000000 );
>>
>> But that doesn't change anything.
>>
>>
>>
>> Thanks in advance
>>
>>
>>
>>
>> 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
>>
>>
>>
>>
>>
>>
>>
>>
>
>
>
> 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
>
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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/
|