Setfile attached...
Haven't had the chance to test on Daily yet
Could you please share it?patmontes » Thu Mar 03, 2016 5:25 pm wrote:Oh I'm still using version 1
What currency is your account?patmontes » Thu Mar 03, 2016 3:24 am wrote:This is Version 1 H4
Setfile attached...![]()
Haven't had the chance to test on Daily yet
Fantastic to see you work this out for yourself.Peepaws » Fri Mar 04, 2016 4:06 am wrote:OH MY GOD, move over Steve! I managed to fix the Arraysort error myself
I searched Arraysort in crapeditor and found only one entry, and it had to do with FIFO, which I do not need. Commented it out, compiled and no more error and the pairs that were giving errors will now trade!
Line 3195 ArraySort(FifoTicket, WHOLE_ARRAY, 0, MODE_DESCEND);
changed to
Line 3195 //ArraySort(FifoTicket, WHOLE_ARRAY, 0, MODE_DESCEND);
So anyway if you're not in the US this should work for you. I'm ready to be shot down now!
Code: Select all
if (ArraySize > 0)
ArraySort(FifoTicket, WHOLE_ARRAY, 0, MODE_DESCEND);
Didn't work fully but isn't causing errors in the expert tab.Can you do me a favour please? Can you try this:to see if the error arises because there were no ticket numbers to sort? A zero size array would probably throw up the error.Code: Select all
if (ArraySize > 0) ArraySort(FifoTicket, WHOLE_ARRAY, 0, MODE_DESCEND);
tryPeepaws » 04 Mar 2016, 14:51 wrote:Didn't work fully but isn't causing errors in the expert tab.Can you do me a favour please? Can you try this:to see if the error arises because there were no ticket numbers to sort? A zero size array would probably throw up the error.Code: Select all
if (ArraySize > 0) ArraySort(FifoTicket, WHOLE_ARRAY, 0, MODE_DESCEND);
Code: Select all
if (ArraySize(FifoTicket) > 0)
ArraySort(FifoTicket, WHOLE_ARRAY, 0, MODE_DESCEND);
Please try this on Monday. It was what I intended to type but missed out the important bit. Thanks martyw.martyw » Fri Mar 04, 2016 8:14 pm wrote:
tryCode: Select all
if (ArraySize(FifoTicket) > 0) ArraySort(FifoTicket, WHOLE_ARRAY, 0, MODE_DESCEND);