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

"Infinite loop" error - Need EasyLanguage Expert.



PureBytes Links

Trading Reference Links

On 25 Aug 2005 at 18:35, Chris Cheatham wrote:

> There appears to be no end to your loop...if currentbar> maxbarsback
>....it will always be > maxbarsback...

??!?  Thank you for your suggestion but "If currentbar > maxbarsback"
isn't a loop...

Does anyone know how can I get rid of this weird "Infinite loop Error"
in the following example ?? (under TradeStation 8.1 build 2706).
This error isn't triggered when applied to a chart with only a few hundred
or thousand bars...

Any other suggestion?

------------------ Example - Just Cut & Paste ------------------
[InfiniteLoopDetect = FALSE]
{ New in TradeStation 8.1 - It should help but it doesn't.... }

var :   ind(0);
array : float Indicator[](0);

if CurrentBar > MaxBarsBack then
  begin
  ind=ind[1] + 1;
  Array_SetMaxIndex(Indicator,ind);
  Indicator[ind]= CCI(10);
  end;

if LastBarOnChart then
  value1=SortArray(Indicator,ind,1);
------------------------------------------------------------------------