市场 / MetaTrader 4 / 指标 / MA bounce LITE arrows 5 30 USD 演示已下载: 27 已发布: 7 十二月 2020 当前版本: 1.3 找不到合适的EA交易?请在自由职业者服务中订购您自己的EA交易 进入自由职业者服务 如何 购买 自动交易或指标 在 虚拟 主机运行您的EA 购买之前测试一个指标/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 登录 您同意网站政策和使用条款 如果您没有帐号,请注册 可以使用cookies登录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: