거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
스크립트

Get Comma Separated Things From String - MetaTrader 4용 스크립트

Kailash Bai Mina
게시자:
Kailash Bai Mina
조회수:
3359
평가:
(8)
게시됨:
2021.08.18 00:39
업데이트됨:
2021.08.18 02:07
Code.mq4 (2.07 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Custom Function To Get Comma Separated Things From String.

This Custom Function Will Require a Integer Input

1.) if You give -1 then it will give you number of things in String.

2.) if You Give 0 Then 1st Thing String(Separated by Comma) Will Be The Output.
     Similarly,  if You Give 1 Then 2nd Thing String(Separated by Comma)  Will Be The Output.

Code : 

input string String = "1Aa@!,2Bb@!,3Cc@!,4Dd@!,5Ee@!,6Ff@!,7Gg@!,8Hh@!,9Ii@!";

//+------------------------------------------------------------------+
//|Get Comma Separated Things From String                            |
//+------------------------------------------------------------------+
string Get_Comma_Separated_Things_From_String(int Position_Number_Or_Negative_1_For_Num_Of_Things)
{
 string _Distances_ = String,To_Be_Added_To_Array = "",distances[9999];_Distances_ += ",";;ArrayResize(distances,StringLen(_Distances_)+11);
 int Count = 0;for(int i=0; i<=StringLen(_Distances_); i++){if(StringGetChar(_Distances_,i)==44) Count++;} if(Position_Number_Or_Negative_1_For_Num_Of_Things==-1) return((string)Count);
 for(int i=0; i<StringLen(_Distances_); i++)
  {
   if(StringGetChar(_Distances_,i)==44)
    {
     for(int j=0; j<ArraySize(distances); j++){string no_need[1];if(distances[j]==no_need[0]) {distances[j]=To_Be_Added_To_Array;i++;break;}}
     To_Be_Added_To_Array="";
    }
   int To_Be_Added_To_To_Be_Added_To_Array = StringGetChar(_Distances_,i);
   To_Be_Added_To_Array += CharToString(To_Be_Added_To_To_Be_Added_To_Array);
  }
 return(distances[Position_Number_Or_Negative_1_For_Num_Of_Things]);
}
    Get Last Round Time And Date Acc To TF Get Last Round Time And Date Acc To TF

    This Custom Function Will Help To Get Round Time For Any Given Timeframe And Time.

    Directional volatility & volume oscillator Directional volatility & volume oscillator

    Displays direction of volatility and volume

    SCT - RiskPerTrade- MT4 SCT - RiskPerTrade- MT4

    Building good trading habits by seeing things in terms of percentage not in terms of money.

    Motion Smoothness Index Motion Smoothness Index

    Determines when market price is smooth or rough