helloea
helloea
helloea
Added topic "Break" and "decimal point" problems
         int size= ArraySize (close);                   double sum[];          ArrayResize
helloea
Added topic Oncalculate function question!
int OnCalculate ( const int rates_total,                  const int prev_calculated,
helloea
Added topic Double array size?
double HighBroadreachArray[]; int HighBroadreachArr= sizeof (HighBroadreachArray)/ sizeof ( double ); void OnStart ()   {    CopyClose ( Symbol (), PERIOD_M5 , 0 ,HighBroadreachArr,HighBroadreachArray);    Print
helloea
Added topic It seems to be a problem in the instructions
void OnStart ()   {    uchar   u_ch;       for ( char ch=- 128 ;ch<= 127 ;ch++)      {       u_ch=ch;        Print (
helloea
Added topic Can't get value!
Why doesn't that get me to value? Also, no errors in the compiler, but errors in MT5... void OnStart ()   {    double Close0[];    double Low0[];    CopyClose ( Symbol (), PERIOD_CURRENT , 0 , 1 ,Close0);
helloea
Added topic They're all int. Why do I have to convert?
double b1[]; double b2[]; double b3[]; double b4[]; double b5[]; void OnStart ()   { int a1= CopyOpen ( Symbol (), PERIOD_M5 , 0 , 1 ,b1); int a2= CopyOpen ( Symbol (), PERIOD_M5 , 0 , 2 ,b2); int a3= CopyOpen ( Symbol (), PERIOD_M5 , 0 , 3
helloea
Added topic In MT5, where is the price data stored?
In MT5, where is the price data stored
helloea
Added topic Is there a difference between "if" and "&&"?
double MathematicalAchievement = 90 ; double ScoreOfChinese = 80 ; void OnStart ()   {    if (MathematicalAchievement> 90 && ScoreOfChinese> 90 )      {        Print
helloea
Added topic How to properly understand "indicator_buffers"?
“indicator_buffers    int    Number of buffers for indicator calculation" How should understand correctly?For example, MACD indicators , we only see "MACD" and "Signal" in MT5, but why are "#property indicator_buffers 4" written
helloea
Added topic Why fixed value, and 48...?? Help, thank you
void OnStart ()   {    int symbol_0= '0' ;    int symbol_9=symbol_0+ 9 ;    printf ( "In a decimal form: symbol_0 = %d,  symbol_9 = %d" ,symbol_0,symbol_9);    printf ( "In a hexadecimal
helloea
Added topic Why is it a number?
void OnStart ()   {    int a= 'A' ;    int b= '$' ;    string c= '?' ;        string d= '\xAE' ;      Print (a,b,c,d);   }
helloea
Added topic Please, why is that?
Please, why? void OnStart ()   {    uchar   ch;       for ( char ch= 1 ;ch<= 9 ;ch++)      {       u_ch=ch;       
helloea
Registered at MQL5.community