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

Re: [amibroker] Re: Converting selectedbar and lastvalue to...



PureBytes Links

Trading Reference Links

Hi,

Here is what I tried to do:

barhh1 =  HHVBars( High, Periods ) ;
bi1 = BarIndex() ;
y11 =  LinearReg( C, barhh1 ) ;
y01 = LinRegIntercept( H, barhh1 ) ;
sl1 = LineArray( bi1-barhh1+0, y01, bi1, y11, 0, True ); 

Unfortunately it seems there is an error...  

What's the barindex for in that code, and if the problem is there, how can I deal with it, considering that for the first 4 lines of that code it began with "selectedvalue"?

Thanks,

Louis



2008/9/12 Barry Scarborough <razzbarry@xxxxxxxxxxxx>

Ara said just use the variable. For instance C is an array and using
C will point to the last value, or the current bar, in the array. To
point to a bar prior to the current one use Ref(C, -n); where n is
the number of bars prior to the current one. Replace C with the array
you want to get the value for.

Use LastValue when you need a value and not an array. An example is
in an IF statement. IF() cannot take an array and you have to get the
value. If you want the value of some previous value use LastValue(ref
(c,-n));

If your results get confusing dump it to the interpretation window so
you can compare the values with what you expect them to be. Use
something like this:

printf(numtostr(lastvalue(c), 1.2)); // current value of c
printf("\n" + numtostr(lastvalue(ref(c, -1)), 1.2)); // previous c

Barry



--- In amibroker@xxxxxxxxxxxxxxx, "Ara Kaloustian" <ara1@xxx> wrote:
>
> just use the variable (without selectedvalue or lastvalue)
> ----- Original Message -----
> From: Louis P.
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Friday, September 12, 2008 2:47 PM
> Subject: [amibroker] Converting selectedbar and lastvalue to...
>
>
> Hi,
>
> I need to know how to convert code that is using selectedbar (it
gets the bar before where I am on the chart) and lastvalue (which
gets the bar at the end of the array) to a code that is checking each
and every bar for the pattern.
>
> Anyone know how to do that?
>
> Thanks,
>
> Louis
>


__._,_.___

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




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___