1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
//+------------------------------------------------------------------+ //| Cauchy.mqh | //| Copyright 2000-2026, MetaQuotes Ltd. | //| www.mql5.com | //+------------------------------------------------------------------+ #include "Math.mqh" //+------------------------------------------------------------------+ //| Cauchy density function (PDF) | //+------------------------------------------------------------------+ //| Computes the value of the Cauchy probability density function | //| with parameters a and b at the desired quantile x. | //| | //| f(x,a,b)= 1/(pi*b*(1.0+((x-a)/b)^2) | //| Arguments: | //| x : Random variable | //| a : Mean | //| b : Scale | //| log_mode : Logarithm mode flag, if true it returns Log values | //| error_code : Variable for error code | //| | //| Return value: | //| The probability density evaluated at x. | //+------------------------------------------------------------------+ double MathProbabilityDensityCauchy(const double x,const double a,const double b,const bool log_mode,int &error_code) { //--- check NaN if(!MathIsValidNumber(x) || !MathIsValidNumber(a) || !MathIsValidNumber(b)) { error_code=ERR_ARGUMENTS_NAN; return QNaN; } //--- check scale if(b<=0.0) { error_code=ERR_ARGUMENTS_INVALID; return QNaN; } //--- prepare argument double y=(x-a)/b; //--- check result if(!MathIsValidNumber(y)) { error_code=ERR_ARGUMENTS_INVALID; return QNaN; } error_code=ERR_OK; if(log_mode==true) return -MathLog(M_PI*b*(1.0+y*y)); //--- return Cauchy density return 1.0/(M_PI*b*(1.0+y*y)); } //+------------------------------------------------------------------+ //| Cauchy density function (PDF) | //+------------------------------------------------------------------+ //| Computes the value of the Cauchy probability density function | //| with parameters a and b at the desired quantile x. | //| | //| f(x,a,b)= 1/(pi*b*(1.0+((x-a)/b)^2) | //| Arguments: | //| x : Random variable | //| a : Mean | //| b : Scale | //| error_code : Variable for error code | //| | //| Return value: | //| The probability density evaluated at x. | //+------------------------------------------------------------------+ double MathProbabilityDensityCauchy(const double x,const double a,const double b,int &error_code) { return MathProbabilityDensityCauchy(x,a,b,false,error_code); } //+------------------------------------------------------------------+ //| Cauchy density function (PDF) | //+------------------------------------------------------------------+ //| The function calculates the probability density function of | //| Cauchy distribution with parameters a and b for values | //| from x[] array. | //| | //| Arguments: | //| x : Array with random variables | //| a : Mean | //| b : Scale | //| log_mode : Logarithm mode flag, if true it returns Log values | //| result : Array with calculated values | //| | //| Return value: | //| true if successful, otherwise false. | //+------------------------------------------------------------------+ bool MathProbabilityDensityCauchy(const double &x[],const double a,const double b,const bool log_mode,double &result[]) { //--- check NaN if(!MathIsValidNumber(a) || !MathIsValidNumber(b)) return false; //--- check scale if(b<=0.0) return false; int data_count=ArraySize(x); if(data_count==0) return false; int error_code=0; ArrayResize(result,data_count); for(int i=0; i-1.0) cdf=MathMin(0.5+M_1_PI*MathArctan(y),1.0); else cdf=MathMin(M_1_PI*MathArctan(-1/y),1.0); return TailLogValue(cdf,tail,log_mode); } //+------------------------------------------------------------------+ //| Cauchy cumulative distribution function (CDF) | //+------------------------------------------------------------------+ //| The function returns the cumulative distribution function of | //| the Cauchy distribution with parameters a and b, evaluated at x. | //| | //| Arguments: | //| x : The desired quantile | //| a : Mean | //| b : Scale | //| error_code : Variable for error code | //| | //| The value of the Cauchy cumulative distribution function with | //| parameters a and b, evaluated at x. | //+------------------------------------------------------------------+ double MathCumulativeDistributionCauchy(const double x,const double a,const double b,int &error_code) { return MathCumulativeDistributionCauchy(x,a,b,true,false,error_code); } //+------------------------------------------------------------------+ //| Cauchy cumulative distribution function (CDF) | //+------------------------------------------------------------------+ //| The function calculates the cumulative distribution function of | //| the Cauchy distribution with parameters a and b for values from | //| x[] array. | //| | //| Arguments: | //| x : Array with random variables | //| a : Mean | //| b : Scale | //| tail : Flag to calculate lower tail | //| log_mode : Logarithm mode flag,if true it calculates Log values| //| error_code : Variable for error code | //| result : Array with calculated values | //| | //| Return value: | //| true if successful, otherwise false. | //+------------------------------------------------------------------+ bool MathCumulativeDistributionCauchy(const double &x[],const double a,const double b,const bool tail,const bool log_mode,double &result[]) { //--- check parameters if(!MathIsValidNumber(a) || !MathIsValidNumber(b)) return false; //--- check scale if(b<=0.0) return false; int data_count=ArraySize(x); if(data_count==0) return false; int error_code=0; ArrayResize(result,data_count); for(int i=0; i-1.0) cdf=MathMin(0.5+M_1_PI*MathArctan(y),1.0); else cdf=MathMin(M_1_PI*MathArctan(-1/y),1.0); result[i]=TailLogValue(cdf,tail,log_mode); } return true; } //+------------------------------------------------------------------+ //| Cauchy cumulative distribution function (CDF) | //+------------------------------------------------------------------+ //| The function calculates the cumulative distribution function | //| of the Cauchy distribution with parameters a and b for values | //| from x[] array. | //| | //| Arguments: | //| x : Array with random variables | //| a : Mean | //| b : Scale | //| result : Array with calculated values | //| | //| Return value: | //| true if successful, otherwise false. | //+------------------------------------------------------------------+ bool MathCumulativeDistributionCauchy(const double &x[],const double a,const double b,double &result[]) { return MathCumulativeDistributionCauchy(x,a,b,true,false,result); } //+------------------------------------------------------------------+ //| Cauchy distribution quantile function (inverse CDF) | //+------------------------------------------------------------------+ //| The function returns the inverse cumulative distribution | //| function of the Cauchy distribution with parameters a and b | //| for the desired probability. | //| Q(p,a,b)=a+b*tan*(pi*(p-1/2)) | //| Arguments: | //| probability : The desired probability | //| a : Mean | //| b : Scale | //| tail : Flag to calculate lower tail | //| log_mode : Logarithm mode, if true it calculates Log values | //| error_code : Variable for error code | //| | //| Return value: | //| The value of the inverse cumulative distribution function | //| of the Cauchy distribution with parameters a and b. | //+------------------------------------------------------------------+ double MathQuantileCauchy(const double probability,const double a,const double b,const bool tail,const bool log_mode,int &error_code) { //--- check NaN if(!MathIsValidNumber(probability) || !MathIsValidNumber(a) || !MathIsValidNumber(b)) { error_code=ERR_ARGUMENTS_NAN; return QNaN; } //--- check scale if(b<=0.0) { error_code=ERR_ARGUMENTS_INVALID; return QNaN; } //--- calculate real probability double prob=TailLogProbability(probability,tail,log_mode); //--- check probability range if(prob<0.0 || prob>1.0) { error_code=ERR_ARGUMENTS_INVALID; return QNaN; } //--- f(1)= + infinity if(prob==1.0) { error_code=ERR_RESULT_INFINITE; return QPOSINF; } //--- f(0)= - infinity if(prob==0.0) { error_code=ERR_RESULT_INFINITE; return QNEGINF; } error_code=ERR_OK; //--- return quantile return a+b*MathTan(M_PI*(prob-0.5)); } //+------------------------------------------------------------------+ //| Cauchy distribution quantile function (inverse CDF) | //+------------------------------------------------------------------+ //| The function returns the inverse cumulative distribution | //| function of the Cauchy distribution with parameters a and b | //| for the desired probability. | //| | //| Arguments: | //| probability : The desired probability | //| a : Mean | //| b : Scale | //| error_code : Variable for error code | //| | //| Return value: | //| The value of the inverse cumulative distribution function | //| of the Cauchy distribution with parameters a and b. | //+------------------------------------------------------------------+ double MathQuantileCauchy(const double probability,const double a,const double b,int &error_code) { return MathQuantileCauchy(probability,a,b,true,false,error_code); } //+------------------------------------------------------------------+ //| Cauchy distribution quantile function (inverse CDF) | //+------------------------------------------------------------------+ //| The function returns the inverse cumulative distribution | //| function of the Cauchy distribution with parameters a and b | //| for the probability values from array. | //| | //| Arguments: | //| probability : Array with probabilities | //| a : Mean | //| b : Scale | //| result : Array with calculated values | //| | //| Return value: | //| true if successful, otherwise false. | //+------------------------------------------------------------------+ bool MathQuantileCauchy(const double &probability[],const double a,const double b,const bool tail,const bool log_mode,double &result[]) { //--- check NaN if(!MathIsValidNumber(a) || !MathIsValidNumber(b)) return false; //--- check scale if(b<=0.0) return false; int data_count=ArraySize(probability); if(data_count==0) return false; int error_code=0; ArrayResize(result,data_count); for(int i=0; i1.0) return false; //--- f(1)= + infinity if(prob==1.0) result[i]=QPOSINF; else //--- f(0)= - infinity if(prob==0.0) result[i]=QNEGINF; else result[i]=a+b*MathTan(M_PI*(prob-0.5)); } return true; } //+------------------------------------------------------------------+ //| Cauchy distribution quantile function (inverse CDF) | //+------------------------------------------------------------------+ bool MathQuantileCauchy(const double &probability[],const double a,const double b,double &result[]) { return MathQuantileCauchy(probability,a,b,true,false,result); } //+------------------------------------------------------------------+ //| Random variate from the Cauchy distribution | //+------------------------------------------------------------------+ //| Compute the random variable from the Cauchy distribution | //| with parameters a and b. | //| | //| Arguments: | //| a : Mean | //| b : Scale | //| error_code : Variable for error code | //| | //| Return value: | //| The random value with Cauchy distribution. | //+------------------------------------------------------------------+ double MathRandomCauchy(const double a,const double b,int &error_code) { //--- check parameters if(!MathIsValidNumber(a) || !MathIsValidNumber(b)) { error_code=ERR_ARGUMENTS_NAN; return QNaN; } //--- check scale if(b<0) { error_code=ERR_ARGUMENTS_INVALID; return QNaN; } error_code=ERR_OK; //--- check scale=0 if(b==0.0) return a; //--- generate random number double rnd=MathRandomNonZero(); //--- return result return a+b*MathTan(M_PI*(rnd-0.5)); } //+------------------------------------------------------------------+ //| Random variate from the Cauchy distribution | //+------------------------------------------------------------------+ //| Generates random variables from the Cauchy distribution with | //| parameters a and b. | //| | //| Arguments: | //| a : Mean | //| b : Scale | //| data_count : Number of values needed | //| result : Output array with random values | //| | //| Return value: | //| true if successful, otherwise false. | //+------------------------------------------------------------------+ bool MathRandomCauchy(const double a,const double b,const int data_count,double &result[]) { //--- check parameters if(!MathIsValidNumber(a) || !MathIsValidNumber(b)) return false; //--- check scale if(b<0) return false; //--- prepare output array ArrayResize(result,data_count); //--- check scale=0 if(b==0.0) { for(int i=0; i