客服热线:
18391752892
我的进货单
0
平台首页
|
手机版
|
二维码
|
客服中心
|
帮助中心
反馈意见
联系我们
VIP服务
|
VIP
会员服务
建站服务
在线升级
联系我们
网站地图
特色频道
金融学院
|
区块链
|
行情快递
|
BrokerShow
|
人才
|
外汇问答
|
交易家
|
交易图赏
|
外汇平台
|
交易视频
|
资料下载
|
外汇EA商城
|
外汇课程
|
投资圈
|
外汇资讯
|
期货
|
顺水鱼EA
|
外汇交易商
扩展专区
排名推广
|
积分商城
|
黄金广告
|
意见反馈
网站地图
|
网站公告
|
RSS订阅
用户专区
用户中心
|
发布货源
|
发布采购
|
发布展会
常见问题
|
VIP会员
全国
已有以下省开通了 顺水的鱼MT4外汇EA趋势对冲马丁延迟套利指标智能交易系统 分站
申请开通分站
全国
外汇EA商城
外汇资讯
交易视频
投资圈
金融学院
行情快递
外汇平台
资料下载
外汇问答
区块链
外汇课程
发布产品
发布采购
首页
外汇EA商城
外汇资讯
交易视频
投资圈
金融学院
行情快递
外汇平台
资料下载
外汇问答
区块链
顺水鱼EA
外汇课程
市场报价
财经日历
实时新闻
发帖
回复
当前位置:
首页
»
投资圈
»
黄金
»
国际黄金圈
国际黄金圈
0
成员
1205
主题
管理本圈
加入本圈
收藏本贴
3 Bar Swing
楼主
收藏
举报
帖子创建时间: 2019-05-05 05:15
回复:
0
关注量:
57
管理
//+------------------------------------------------------------------+
//| 3_bar_swing.mq4 |
//| Zen_Leow |
//| |
//+------------------------------------------------------------------+
#property copyright "Zen_Leow"
#property l
ink ""
#property indicator_chart_window
// The number of buffers for calculation, up to 8
#property indicator_buffers 2
// The color for displaying arrows
#property indicator_color1 Green // Long signal
#property indicator_color2 Red // Short signal
// Width of the arrows
#property indicator_width1 1 // Long signal arrow
#property indicator_width2 1 // Short signal arrow
extern int ArrowDistance = 3;
// Buffers for the calculations
double Up_Arrow_Buffer[]; // Long buffer for display
double Down_Arrow_Buffer[]; // Short buffer for display
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
// SetIndexStyle - sets the new type, style, width and color for a given indicator line
// SetIndexBuffer - binds the array variable declared at a global level to the custom indicator pre-defined buffer
// SetIndexArrow - sets an arrow symbol for indicators line of the DRAW_ARROW type.
SetIndexStyle(0, DRAW_ARROW);
SetIndexBuffer(0, Up_Arrow_Buffer);
SetIndexArrow(0, 233); // Up arrow
SetIndexStyle(1, DRAW_ARROW);
SetIndexBuffer(1, Down_Arrow_Buffer);
SetIndexArrow(1, 234); // Down arrow
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int i; // Bar index
int Counted_bars; // Number of counted bars
//--------------------------------------------------------------------
Counted_bars=IndicatorCounted(); // Number of counted bars
i=Bars-Counted_bars-1; // Index of the first uncounted
if (i == 0)
{
i = 2; // the newest signal bar is suppose to be at index 2
}
while(i>1) // Loop for uncounted bars
{
if (isUpSwingBar(i))
{
Up_Arrow_Buffer[i] = Low[i] - (ArrowDistance * Point);
Down_Arrow_Buffer[i] = EMPTY_VALUE;
}
else if (isDownSwingBar(i))
{
Down_Arrow_Buffer[i] = High[i] + (ArrowDistance * Point);
Up_Arrow_Buffer[i] = EMPTY_VALUE;
}
else
{
Up_Arrow_Buffer[i] = EMPTY_VALUE;
Down_Arrow_Buffer[i] = EMPTY_VALUE;
}
i--;
}
//----
return(0);
}
bool isUpSwingBar(int i)
{
if (Low[i] < Low[i+1] && Low[i] < Low[i-1] && High[i] < High[i+1] && High[i] < High[i-1])
{
return (true);
}
return (false);
}
bool isDownSwingBar(int i)
{
if (Low[i] > Low[i+1] && Low[i] > Low[i-1] && High[i] > High[i+1] && High[i] > High[i-1])
{
return (true);
}
return (false);
}
//+------------------------------------------------------------------+
打赏
本文作者
admin
+加好友
本圈圈主
作者帖子
企业店铺
Ta的圈贴
更多
离开股市 步入汇市(一)
炒外汇中常见的几个误区
海报3,个性签名
《中国对冲基金》杂志征稿函
HTML/BUILDER工程师网站开发
测试工程师
网站运营部社区运营管理员
EA之家论坛广告宣传海报1
最新创建圈子
新闻EA运行效果图圈 2019-05-05
圈主:admin 帖子:1
最新话题
我要发帖
离开股市 步入汇市(一)
炒外汇中常见的几个误区
海报3,个性签名
《中国对冲基金》杂志征稿函
HTML/BUILDER工程师网站开发
测试工程师
网站运营部社区运营管理员
EA之家论坛广告宣传海报1
如何在EA家园
php开发thinkphp框架熟手招募
发帖
回复
«查看国际黄金圈其他贴
本作者推荐供应货源
进入商铺>>
面议
顺水的鱼MT4外汇智能交易系统
18391752892
网站客服
法定工作日
8:30-17:30
了解更多外汇信息
微信扫描关注
用户反馈
返回顶部