마켓 / MetaTrader 4 / 지표 / MA bounce LITE arrows 5 30 USD 데모 다운로드됨: 27 게시됨: 7 12월 2020 현재 버전: 1.3 적합한 로봇을 찾지 못하셨나요? 프리랜스에서 나만의 로봇을 주문해 보세요 프리랜스로 이동 트레이딩 로봇 또는 지표 구매 구입 방법 EA를 작동시켜보세요 가상 호스팅으로 구매 전에 지표와 트레이딩 로봇을 테스트해보세요 마켓에서 수익 창출을 원하십니까? 제품의 판매량을 나타내는 방법 미리보기 리뷰 (1) 코멘트 (5) 새 소식 제품을 구매하거나 렌트한 사용자만 코멘트를 남길 수 있습니다 Aravind Kolanupaka 2021.02.07 21:09 #1 Hello @Tomas Kremen, Could you specify the arrow buffers for iCustom call please ? I scanned for the exposed buffers, but I did not find the right ones Thank you Tomas Kremen 2021.02.07 22:03 #2 Aravind: Hello @Tomas Kremen, Could you specify the arrow buffers for iCustom call please ? I scanned for the exposed buffers, but I did not find the right ones Thank you Hello, no problem. Here is the sample code: double arrow_up = get_bounce(0); double arrow_down = get_bounce(1); if(arrow_up != 0) //.....BUY if(arrow_down != 0) //.....SELL double get_bounce (int buff) { double mab_val = iCustom(Symbol(), PERIOD_CURRENT, "\\Market\\MA bounce lite - arrows.ex4", "---", 20, //Current MA period MODE_SMA, //Current MA type PRICE_CLOSE, //Current MA applied price 0, //HTF line method (0 - Long term, 1 - Short term) 10, //Filter period 1000, //Bars limit "---", 200, //HTF MA period MODE_SMA, //MA type PRICE_CLOSE, //MA applied price PERIOD_H1, //Timeframe for HTF MA "---", false, //Use alerts false, //Use push notifications false, //Use email notifications "---", true; //Show bounces from HTF MA 233, //Arrow style UP 234, //Arrow style DOWN "---", buff, 1); return (mab_val); } Tomas Kremen 2021.02.08 16:29 #3 I just updated inticator to version 1.2. There are few new inputs, so I'm posting updated iCustom code: double arrow_up = get_bounce(0); double arrow_down = get_bounce(1); if(arrow_up != 0) //.....BUY if(arrow_down != 0) //.....SELL double get_bounce (int buff) { double mab_val = iCustom(Symbol(), PERIOD_CURRENT, "\\Market\\MA bounce lite - arrows.ex4", "---", 20, //Current MA period MODE_SMA, //Current MA type PRICE_CLOSE, //Current MA applied price 0, //TD line source for calculation (0 - Oscillators, 1 - Price) 0, //TD line method (for oscillators source) (0 - Long term, 1 - Short term) 10, //Filter period (for oscillators source) 100, //TD line averaging period (for price source) 1, //TD line precision (0.1 - 1) (for price source) 5000, //Bars limit "---", 200, //HTF MA period MODE_SMA, //MA type PRICE_CLOSE, //MA applied price PERIOD_H1, //Timeframe for HTF MA "---", false, //Use alerts false, //Use push notifications false, //Use email notifications "---", true, //Show bounces from HTF MA 233, //Arrow style UP 234, //Arrow style DOWN buff, 1); return (mab_val); } Aravind Kolanupaka 2021.02.08 20:54 #4 Thank you so much. Tomas Kremen 2021.04.11 16:10 #5 Hello, version 1.3 is now available. 2 new buffers are added for HTF arrows, so here is updated iCustom function: double arrow_up = get_bounce(0); double arrow_down = get_bounce(1); double arrow_upHTF = get_bounce(2); double arrow_downHTF = get_bounce(3); if(arrow_up != 0 || arrow_upHTF != 0) //.....BUY if(arrow_down != 0 || arrow_downHTF != 0) //.....SELL double get_bounce (int buff) { double mab_val = iCustom(Symbol(), PERIOD_CURRENT, "\\Market\\MA bounce lite - arrows.ex4", "---", 20, //Current MA period MODE_SMA, //Current MA type PRICE_CLOSE, //Current MA applied price 0, //TD line source for calculation (0 - Oscillators, 1 - Price) 0, //TD line method (for oscillators source) (0 - Long term, 1 - Short term) 10, //Filter period (for oscillators source) 100, //TD line averaging period (for price source) 1, //TD line precision (0.1 - 1) (for price source) 5000, //Bars limit "---", 200, //HTF MA period MODE_SMA, //MA type PRICE_CLOSE, //MA applied price PERIOD_H1, //Timeframe for HTF MA "---", false, //Use alerts false, //Use push notifications false, //Use email notifications "---", 233, //Arrow style UP 234, //Arrow style DOWN true, //Show bounces from HTF MA 241, //HTF arrow style UP 242, //HTF arrow style DOWN buff, 1); return (mab_val); } 제품을 구매하거나 렌트한 사용자만 코멘트를 남길 수 있습니다 트레이딩 기회를 놓치고 있어요: 무료 트레이딩 앱 복사용 8,000 이상의 시그널 금융 시장 개척을 위한 경제 뉴스 등록 로그인 공백없는 라틴 문자 비밀번호가 이 이메일로 전송될 것입니다 오류 발생됨 Google으로 로그인 웹사이트 정책 및 이용약관에 동의합니다. 계정이 없으시면, 가입하십시오 MQL5.com 웹사이트에 로그인을 하기 위해 쿠키를 허용하십시오. 브라우저에서 필요한 설정을 활성화하시지 않으면, 로그인할 수 없습니다. 사용자명/비밀번호를 잊으셨습니까? Google으로 로그인
Aravind Kolanupaka 2021.02.07 21:09 #1 Hello @Tomas Kremen, Could you specify the arrow buffers for iCustom call please ? I scanned for the exposed buffers, but I did not find the right ones Thank you
Tomas Kremen 2021.02.07 22:03 #2 Aravind: Hello @Tomas Kremen, Could you specify the arrow buffers for iCustom call please ? I scanned for the exposed buffers, but I did not find the right ones Thank you Hello, no problem. Here is the sample code: double arrow_up = get_bounce(0); double arrow_down = get_bounce(1); if(arrow_up != 0) //.....BUY if(arrow_down != 0) //.....SELL double get_bounce (int buff) { double mab_val = iCustom(Symbol(), PERIOD_CURRENT, "\\Market\\MA bounce lite - arrows.ex4", "---", 20, //Current MA period MODE_SMA, //Current MA type PRICE_CLOSE, //Current MA applied price 0, //HTF line method (0 - Long term, 1 - Short term) 10, //Filter period 1000, //Bars limit "---", 200, //HTF MA period MODE_SMA, //MA type PRICE_CLOSE, //MA applied price PERIOD_H1, //Timeframe for HTF MA "---", false, //Use alerts false, //Use push notifications false, //Use email notifications "---", true; //Show bounces from HTF MA 233, //Arrow style UP 234, //Arrow style DOWN "---", buff, 1); return (mab_val); }
Tomas Kremen 2021.02.08 16:29 #3 I just updated inticator to version 1.2. There are few new inputs, so I'm posting updated iCustom code: double arrow_up = get_bounce(0); double arrow_down = get_bounce(1); if(arrow_up != 0) //.....BUY if(arrow_down != 0) //.....SELL double get_bounce (int buff) { double mab_val = iCustom(Symbol(), PERIOD_CURRENT, "\\Market\\MA bounce lite - arrows.ex4", "---", 20, //Current MA period MODE_SMA, //Current MA type PRICE_CLOSE, //Current MA applied price 0, //TD line source for calculation (0 - Oscillators, 1 - Price) 0, //TD line method (for oscillators source) (0 - Long term, 1 - Short term) 10, //Filter period (for oscillators source) 100, //TD line averaging period (for price source) 1, //TD line precision (0.1 - 1) (for price source) 5000, //Bars limit "---", 200, //HTF MA period MODE_SMA, //MA type PRICE_CLOSE, //MA applied price PERIOD_H1, //Timeframe for HTF MA "---", false, //Use alerts false, //Use push notifications false, //Use email notifications "---", true, //Show bounces from HTF MA 233, //Arrow style UP 234, //Arrow style DOWN buff, 1); return (mab_val); }
Tomas Kremen 2021.04.11 16:10 #5 Hello, version 1.3 is now available. 2 new buffers are added for HTF arrows, so here is updated iCustom function: double arrow_up = get_bounce(0); double arrow_down = get_bounce(1); double arrow_upHTF = get_bounce(2); double arrow_downHTF = get_bounce(3); if(arrow_up != 0 || arrow_upHTF != 0) //.....BUY if(arrow_down != 0 || arrow_downHTF != 0) //.....SELL double get_bounce (int buff) { double mab_val = iCustom(Symbol(), PERIOD_CURRENT, "\\Market\\MA bounce lite - arrows.ex4", "---", 20, //Current MA period MODE_SMA, //Current MA type PRICE_CLOSE, //Current MA applied price 0, //TD line source for calculation (0 - Oscillators, 1 - Price) 0, //TD line method (for oscillators source) (0 - Long term, 1 - Short term) 10, //Filter period (for oscillators source) 100, //TD line averaging period (for price source) 1, //TD line precision (0.1 - 1) (for price source) 5000, //Bars limit "---", 200, //HTF MA period MODE_SMA, //MA type PRICE_CLOSE, //MA applied price PERIOD_H1, //Timeframe for HTF MA "---", false, //Use alerts false, //Use push notifications false, //Use email notifications "---", 233, //Arrow style UP 234, //Arrow style DOWN true, //Show bounces from HTF MA 241, //HTF arrow style UP 242, //HTF arrow style DOWN buff, 1); return (mab_val); }
Hello @Tomas Kremen,
Could you specify the arrow buffers for iCustom call please ?
I scanned for the exposed buffers, but I did not find the right ones
Thank you
Hello @Tomas Kremen,
Could you specify the arrow buffers for iCustom call please ?
I scanned for the exposed buffers, but I did not find the right ones
Thank you
Hello, no problem. Here is the sample code:
Hello, version 1.3 is now available. 2 new buffers are added for HTF arrows, so here is updated iCustom function: