PureBytes Links
Trading Reference Links
|
Title: A simple loop, but not so simple?
I need to loop over n-bars before the selected one with QuickAFL enabled. I know I have seen an example somewhere but can't find it. If i am correct Tomasz gave a very explicit illustrated example. Anyone see what is wrong with this?
End = SelectedValue( BarIndex() );
Start
for ( b = Start; b <= end; b++ )
{
_TRACE( "b: " + b + ", Start: " + Start + ", end: " + End );
P = C[b];
}
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|