why not enter in cicle for ?

 

hi guys  probably is  my mind + holiday = devastated , but is  possible mql4 not enter in  for ??

i have this part of EA

int OnInit()
  {
   ChartSetSymbolPeriod(0,Symbol(),PERIOD_D1);
 
   ArrayResize(Median,280);
   ArrayResize(HL,280);
   ArrayResize(HO,280);
   ArrayResize(OL,280);   
   
   for(int i=0; i==279; i++)
     {
      Median[i]=((Open[i]+Close[i])/2);
      HL[i]=High[i]-Low[i];
      HO[i]=High[i]-Open[i];
      OL[i]=Open[i]-Low[i];
      HLM +=High[i]-Low[i];
      Print("TEMP DIiiiiiiiiiiiiiiii  "+ HLM);
     }

 

   Print("TEMP DIUyyyyyyyyyyyyyy "+HLM);

 

   return(INIT_SUCCEEDED);
  }

but not enter in cicle for o_O not print a print inside of for  but  print  a print command outside  for and return 0

 

i tryed  also with this  but not print nothing o_O

//+------------------------------------------------------------------+
//|                                                     diomerda.mq4 |
//|                        Copyright 2020, MetaQuotes Software Corp. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2020, MetaQuotes Software Corp."
#property link      "https://www.mql5.com"
#property version   "1.00"
#property strict
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//---

//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
   
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
//---
         for (int j=0;j==200;j++)
   {
   Print("TEMP DIiiiiiiiiiiiiiiii  "+ j);
   }
  }
//+------------------------------------------------------------------+
 
for (int j=0;j==200;j++)

This will do nothing

for (int j=0;j<=200;j++)

This will.

 
yea .....why i am so stup..........thanks