this will put the current bid price into every index of the array.
put this into the custom mql code block:
for(int a=59;a>0;a--) { varbid[a]=varbid[a-1]; } varbid[0]=MarketInfo(Symbol(),MODE_BID);0 is the most recent price so 1 would be the second most recent and so on. 59 being the oldest.