一个简单的外汇交易系统 Simple Pips Generating Machine

合集下载

简单有效实用的一分钟交易系统详解

简单有效实用的一分钟交易系统详解

简单有效实用的一分钟交易系统详解Company Document number:WUUT-WUUY-WBBGB-BWYTT-1982GT简单有效实用的一分钟交易系统详解太多的外汇交易者一直处于吃亏的交易之中,只有不停入金的忍痛割爱,从来没有品尝过出金的成绩感觉。

这是因为他们没有属于自己的一套稳定盈利的交易系统,甚至没有形成自己的交易系统。

对此,我表示深感痛心,不由想起我当初涉足外汇行业时候求学之艰难,交易之辛苦。

所以,明天我简单的给大家引见一套简单有效而又实用的交易系统,希望能够对各位交易者有所匡助,可以使你们稳定盈利,赚取属于自己的一份利润,进行愉快的交易。

一、系统的引见:浅绿色的是377EMA均线,黄色的是377SMA均线,紫红的是55、89、144的EMA均线。

MACD的参数为(45,377,144)。

二,做多的条件:1、两条377均线扁平向上,呈现多头摆列,377EMA在377SMA上面。

2、55、89、144均线位于两条377均线上方,呈多头发散。

3、MACD在0轴上方,大概上穿0轴,再者就是MACD 形成金叉。

4、K线站稳377均线上方,并且站稳55、89、144三线上方。

如下图所示:入场做多。

三,做多出场条件:1、价格破三线(55、89、144),三线开始纠结转而向下。

2、MACD死叉大概下穿0轴。

3、均线纠结向下转向,两条377均线由向上逐步走平向下。

如下图所示:多单要果断离场。

四,做空的条件:1、两条377均线扁平向下,呈现空头摆列,377EMA在377SMA下面。

2、55、89、144均线位于两条377均线下方,呈空头发散。

3、MACD在0轴下方,大概下穿0轴,再者就是MACD 形成死叉。

4、K线站稳377均线下方,并且站稳55、89、144三线下方。

如下图所示:入场做空五,做空出场条件:1、价格破三线(55、89、144),三线开始纠结转而向上。

2、MACD金叉大概上穿0轴。

外汇MT4_EA智能系统MQ4编写详细举例

外汇MT4_EA智能系统MQ4编写详细举例

创建一简易的人工智能系统举例说明让我们将MACD指标同获利能力、支撑移动止损位以及操作安全等因素结合起来考虑以创建人工智能系统。

下面的例子是开立和控制一个单独的头寸。

<BR><BR>交易原则:<BR><BR>. 做多(买入)信号——即当MACD 指针是在0轴在以下,为向上的趋势并与向下的信号线相交(金叉) <BR><BR>. 做空(卖出) 信号——即当MACD 指针是在0轴以上,为向下趋势并与向上的信号线相交(死叉) <BR><BR>. 多头平仓信号——即执行限价平仓指令或移动止损指令以获得利润或者在MACD指针与信号线相交(MACD指针在0轴以上且为向下趋势并与向上趋势的信号线相交)时平仓 <BR><BR>. 空头平仓信号——即执行限价平仓指令或移动止损指令以获得利润或者在MACD指针与信号线相交(MACD指针在0轴以下且为向上趋势并与向下趋势的信号线相交)时平仓 <BR><BR>重要提示: <BR><BR> 在我们分析MACD指标时,为了排除MACD指示中一些并不重要的变化情况(即图表中的细微“小丘”),下面我们另外引荐一种控制“小丘”大小的方法: <BR><BR>指示范围至少为5个最小单位(5点,即USD/CHF=0.0005,USD/JPY=0.05) <BR><BR><BR><BR>第一步:撰写人工智能系统说明 <BR><BR><BR>将鼠标指在导航窗口的人工智能系统,点击鼠标右键在弹出的菜单中CREATE A NEW EXPERT(创建一个智能系统)命令. 正在初始化的WISARD OF EXPERT ADVISOR 会问你是否要输入数据.在弹出的窗口中你得写下NAME名字(人工智能系统的名字) 、AUTHOR作者、与你的网址链接、须知—人工智能系统的测试样本.你也可以设定你想要的Lots(交易单位), Stop Loss(止损点), Take Profit(平仓) 和 Trailing Stop(移动止损)的默认值. <BR><BR><BR><BR>第二步:创立程序的初步结构 <BR><BR>测试系统的代码仅仅为几页纸,即使是这几页纸仍然是难以理解的,特别是在我们这些不是专业的程序员的眼里是非常难的.不然,我们也不必写下这段说明,不是吗? <BR><BR>为了了解标准的人工智能系统的结构,我们来看一下下面的解释: <BR><BR>1.初始资料检查 <BR><BR>.检查图表,图表上棍的数量 <BR><BR>.检查外部变数值:LOTS,S/L,T/P,T/S <BR><BR>2.设置为快速数据存取的内部变量 <BR><BR>3检查交易终端—是否有空间?如果有,然后 <BR><BR>.检查账户中的可用资金 <BR><BR>.是否可以做多(买入) <BR><BR>.建仓买入和平仓 <BR><BR>.是否可以做空(卖出) <BR><BR>.建仓卖出和平仓 <BR><BR>4. 定期控制已开立的头寸<BR><BR>..若是多头合约 <BR><BR> .是否要平仓 <BR><BR>.是否要重新设定移动止损点 <BR><BR>..若是空头合约 <BR><BR>.是否要平仓 <BR><BR>.是否要重新设定移动止损点 <BR><BR>这是相对简单的样板,仅仅只有4个主要单元. <BR><BR>现在我们来试着逐渐将结构表中的每一部分的代码做出来: <BR><BR>1.初始资料检查 <BR><BR>这一块的数据通常是经过稍稍修改后从一个系统移至另一系统的—这实际上是一单元检查. <BR><BR>If Bars&lt;200 Then Exit; // the chart has less than 200 bars - exit <BR><BR>If TakeProfit&lt;10 Then Exit; // wrong takeprofit parameters 收益小于10点退出<BR><BR>2设置为快速数据存取的内部变量 <BR><BR>在程序代码中,有的是经常需要存取的指示值和操做的计算值.为了简化译码和加速存取,数据最初便在内部变数中嵌套进去<BR><BR>.MacdCurrent=iMACD(12,26,9,MODE_MAIN,0); // MACD value on the current bar <BR><BR>MacdPrevious=iMACD(12,26,9,MODE_MAIN,1); // MACD value on the previous bar <BR><BR>SignalCurrent=iMACD(12,26,9,MODE_SIGNAL,0); // Signal Line value on the current bar <BR><BR>SignalPrevious=iMACD(12,26,9,MODE_SIGNAL,1);//Signal Line value on the previous bar<BR><BR>MaCurrent=iMA(MATrendPeriod,MODE_EMA,0); // moving average value on the current bar <BR><BR>MaPrevious=iMA(MATrendPeriod,MODE_EMA,1); // moving average value on the previous bar <BR><BR>现在,我们以在程序中简单的写入字符MacdCurrent代替晦涩难懂的iMACD(12,26,9,MODE_MAIN,0).所有的人工智能系统中的变量都依据MQL II语言进行基本的解释. <BR><BR>var: MacdCurrent(0), MacdPrevious(0), SignalCurrent(0), SignalPrevious(0); <BR><BR>var: MaCurrent(0), MaPrevious(0); <BR><BR>MQL II语言还另外推出一种的用户自定义变量,它可以在程序外设定而无须任何系统程序下的源程序正文的参考.这个特点使程序更具灵活性MATrendPeriod变量就是一个这种类型的用户自定义变量,因此,我们在程序的开头加入这段说明. <BR><BR>defines:MATrendPeriod(56); <BR><BR ><BR ><P>3. 检查交易终端是否有空间?如果有,然后 <BR><BR>在我们的人工智能系统中,我们只能使用现时头寸而不能操作延迟的买卖盘.为了安全起见,我们介绍一种核对过去交易终端已下买卖盘的程序. <BR><BR>If TotalTrades&lt;1 then // no opened orders identified <BR><BR>{ <BR><BR>3.检查: 账户的可用资金……. 在分析市场状况之前最好先检查一下你的账户的资金情况, 以确保账户中有开立头寸的资金. <BR><BR>If FreeMargin&lt;1000 then Exit; // no funds – exit <BR><BR><BR>. 是否可以做多(买入) <BR><BR> 买入的条件信号:MACD指标在0轴以下,为向上趋势且与向下趋势的信号线相交。

一个老外的5分钟外汇交易系统

一个老外的5分钟外汇交易系统

一个老外的5分钟外汇交易系统
5分钟系统交易
我用5分钟交易策略在EURUSD和GBPUSD取得了成功。

一天最多做3次。

开仓的位置:50MA角度大于20度时,走在21MA之上,当价格回调到10MA和21MA之间时做空。

止损6个点,止盈8-10个点。

用这种交易策略靠个人的风险控制。

希望大家能靠这种方法获利。

20度角靠目测来判断。

当50MA以这个角度运动时,说明趋势比较强。

但不是准确的角度。

人们可以感觉到运动的方向。

我每天最多只做3单,如果2单获利15-20点,我今天就不做了,如果一单挣一单亏我继续做,如果亏了2单我今天就不做了。

我们的主要目的是通过50MA的角度判断5分钟的趋势,并在价格回调到10MA和21之间进场。

潜规则:若看到MAE21正慢慢贴近MA50时要避免操作,因为趋势可能有变,弄不好嘴都没亲上就被狗仔队拍到搞得满城风雨或被美联储的政委揪到办公室说你作风有问题不适合炒汇等等,总之看到MAE21正慢慢贴近MA50时要观望。

(借用一下鹤版的)
规则如下:1通过角度可以判断出50MA的趋势很强。

2.等待价格回调到10MA和21MA之间。

3.在这种条件下进场
4.止损6个点。

5.在获利6个点后下调止损。

6.获利8-10个点
Some more samples。

外汇免费的一分钟交易系统

外汇免费的一分钟交易系统

一分钟交易系统
所需指标:布林带VOL MACD(这些都常规设置)
1.在MT4上面调出以上三种技术指标,按常规设置好
2.首先观察成交量VOL,需要的是某一时间段显眼且是高量的一分
钟成交量
3.观察汇价所处的位置,需要的是某一时间段汇价处于超出布林带
的上轨或者下轨
4.出现了一分钟显眼的高量VOL,如果汇价处于布林带的上轨,观察之前汇价是否一直在上涨的,MACD的柱状是否处于0轴的上方且已经向上发散一段时间了,如果是就紧盯出现高量之后,下一分钟收盘介入做空,止损20个点,当汇价开始下跌的时候已经盈利了第一时间移动止损到保本损的位置,然后零风险博利润,理论上获利点可以放在布林带的下轨,实际情况大家可以着重考虑
5.出现了一分钟显眼的高量VOL,如果汇价处于布林带的下轨,观察之前汇价是否一直在下跌的,MACD的柱状是否处于0轴的下方且已经向下发散一段时间了,如果是就紧盯出现高量之后,下一分钟收盘介入做多,止损20个点,当汇价开始上涨的时候已经盈利了第一时间移动止损到保本损的位置,然后零风险博利润,理论上获利点可以放在布林带的上轨,实际情况大家可以着重考虑
注意:此方法不适用整理期突然大阴或者大阳这样远离布林带的情况,也不适用于特大消息公布时出现的情况(非农,议息会议,利率公布),严格止损,控制仓位,小利润积累大财富,见好就收
文档来源:十年戎马技术交流QQ657137986。

如何建立个人外汇交易系统

如何建立个人外汇交易系统

如何建立个人外汇交易系统交易系统是指在交易市场中针对各个相关环节做出明确的策略,并建立成一种能实现稳定赢利的规则来指导交易,下面给大家带来如何建立个人外汇交易系统,希望大家喜欢!如何建立个人外汇交易系统很多人在无数的挫折中学习到了技术和理论,但是还是会常常的找不到方向。

其实无论你学习了什么样的方法,最终只有和自身条件相结合形成一套交易系统,交易的道路才会走的更长远。

万事开头难,任何事情的开头都需要一套理论来支撑,理论上行的通了才会付诸实践,交易也是一样,一般来说需要一年的时间来不断的试验各种交易方法,悟性好的也得半年左右。

这里说的方法不一定非得是道氏、江恩这些,举个最简单的例子,抛硬币也可以,正面做多,反面做空,别怀疑,这也算是一个方法,只是看起来比较low。

分析与交易的区别:分析研判和实盘操作为什么很多人分析的很准确,却赚不到钱?因为分析和交易是两件不同的事,分析不是交易,无论是技术分析还是基本面分析,都只是分析市场的工具,表达了市场当前行为的一种语言,只是交易系统的一部分,是为了交易服务的。

大多交易者更懂分析,过分关注市场的分析,而缺乏交易的理解,而专业的交易者除了分析,还会考虑具体的交易方法,买卖的决策,仓位和资金的管理,以及心态的控制等。

你可以先学习分析,也可以先学习交易的基本原则,然后逐渐建立自己的交易系统,但千万不要两者分开使用,单独依靠哪一种都无法实现较为稳定的收益。

分析判断对了,操作错了,结果是失败,分析判断错了,操作对了,还是失败,看对不等于作对。

交易频率简单理解就是每天做多少单交易,建议不要过多,2到5单之间即可。

做多了思绪很容易发生混乱,最后得不偿失。

连续损失两单就可以休息一下了,这个时候基本上很难再看清方向了。

当然这也是根据你的交易方法来制定,比如剥头皮,一天的交易频率是相当高的,快进快出一天几十单都是有的;又或者马丁策略,频繁加仓,直到……你懂得!交易品种了解每一种货币对的特性也是特别重要的一点,比如欧元稳,比较适合短线操作,英镑波动较大,适合投机。

外汇交易实例教学

外汇交易实例教学

在学习完前面的外汇基础课程后,我们今天来真实的体验一下外汇保证金交易,让大家对外汇交易有一个更直观的接触。

交易平台下载首先,我们需要下载外汇交易平台。

投资者可以到汇天国际的网站上进行交易平台的下载工作,如果对于下载和安装有任何疑问,其在线客服人员会为您提供相应的帮助,这里我们就不做赘述了。

下面我们重点将对交易的具体操作进行说明。

当我们对MT4平台安装完成后,桌面会显示出一个MT4平台的新图标,我们双击进入。

在初次登陆时,系统默认弹出“开新模拟帐号”窗口,只有在申请完毕模拟帐号后,系统才能连接服务器显示行情。

当然,以后也可以随时从“文件”菜单中点击“开新模拟帐号”选项。

或者在导航器窗口,帐户项上,点击右键,选择“开新模拟帐户”。

接下来,在填写完基本的信息后,选择适合我们的杠杆比例及账户初始资金量。

点击我同意订阅你们的新闻简报(单击)下方将出现下一步的按钮。

点击下一步。

继续点击下一步。

注册成功后,将会出现一个包含所开立帐户数据的窗口。

包含了我们开设账户的基本信息。

这里需要说明的是,“帐号”即为投资者登陆的账户号码,“主密码”即为投资者进入系统进行交易的密码,“投资人密码”为只读密码,账户通过投资人密码登陆,只能查看交易情况,但不能进行任何交易和其他操作。

点击完成,进入平台操作页面。

MT4平台启动后,连接到服务器时,会自行检测程序新版本。

如果发现新版本,“自动更新“ 窗口会自动弹出,按“开始”按钮即可。

下载更新完成后,新版本将会自动安装并重启。

由于我们这里已经是最新的版本,因此不用自动更新。

接下来我们将对MT4平台的操作页面进行简单的介绍。

平台的最上方为主窗口标题,显示了账户号码等信息。

主窗口标题的下方为主菜单,MT4平台的所有功能都可以在此找到。

工具栏则是MT4众多常用功能的快捷菜单,很多常用的平台操作都可以通过他直接完成。

平台的左侧为市场报价窗口,顾名思义,他就是集合了所有“货币对”市场报价的窗口。

外汇高手稳定精准的交易系统

外汇高手稳定精准的交易系统

外汇高手稳定精准的交易系统
一个稳定精准的交易系统软件是炒外汇投资者最重要的交易工具,它可以为投资者提供包括技术分析、基本面分析、自动化交易以及移动设备交易等必要的功能。

外汇经纪商提供的MT5平台通常是免费的。

每一个被广泛使用的平台必定有其出色的功能。

在评估一个平台时,你需要针对自己的交易风格来寻找最需要的功能。

通常外汇高手稳定精准的交易系统包括以下几点:
精准的报价
你一定会希望交易平台能提供所有货币对的精准报价。

重复报价、不了解市场何时变化是每个交易者都希望避免的,否则你很难及时下
单并充分监控风险。

高效的服务器
绝大多数交易者都是在线交易,因此除了要求平台精准的报价外,像欧洲顶级交易商皇玛hmafx外汇的交易软件,提供的无滑点、无延迟的MT5保证稳定和高速的网络连接,这样才能最快获得报价信息和处理速度。

账户管理
如果一个交易平台允许你直接管理自己的交易账户,那么这能节省很多时间。

你建仓后肯定需要对订单进行管理,持续跟踪账户情况,并随着市场的变化及时止盈。

因此,一个理想的外汇交易平台会提供合理的账户管理功能,以便交易者掌握自己的交易情况。

技术分析工具
很多好的交易平台会提供全套功能的技术分析工具,包括图表和一系列流行的指标。

交易图表应该根据不同的交易时间不断更新。

还有一个很有用的功能就是让交易者能直接通过图表交易。

简单思维之【三均线外汇交易系统】

简单思维之【三均线外汇交易系统】

简单思维之【三均线外汇交易系统】简单思维之三均线外汇交易系统,是我经历很多次系统完善后我现在使用的一个模板系统,此套系统具有简单,顺势,下单少,盈利能力强四大优点。

核心思想在系统上不太好体现,主要的操作思路是顺势,做趋势单,所有震荡和不确定趋势都不做,每笔交易需要耐心等待,建仓需要果断,止损不能落下。

今天我把它写出来,不要说我无私,因为我知道别人看了也不一定会董,懂了也不一定会做,做了也不一定能做好。

招式套路:三根均线EMA 21,55,144内功心决:耐心等待,减少不必要交易。

【重点】时间周期:4H , 1H(1H为主周期)交易理念:简单,等待,分散目标,盈利后立即保平,因为如果打到止损,肯定不是此系统应该赚的的钱。

止损在50点以内,错过建仓机会不追仓等待回调建仓时机。

资金管理:100倍杠杠,2000美金下单0.1手。

{自己根据自身水平调整}交易方法:1H上,144上两线金叉多,反之亦然。

倾斜角度大于20°,55均线走平不开仓。

【汇价起稳21均线】例如趋势向上,价格在144线以内,回踩55均线为建仓位。

价格价格回踩144而不破或假破回抽建仓做多,你敢踩,我就敢多一直踩就一直多,直到到趋势结束被止损。

交易细节:4H上55线为1H上144线,即1H上21,55交叉为4H交叉内的双重金死叉。

一般盈利趋势为1H上21线上下。

不管遇到阻力支撑还是什么,汇价行走在21均线上千万别轻易出场,让利润再奔跑一会。

盈利预期:我现在交易8个货币对(6+2,2个交叉盘),日元除外。

我预期每个货币对每月盈亏100--200点即可,100---200*8=800--1600,一个货币对每月100--200点简单吧,一月盈利800--1600点的绝对算得上是顶尖的高手。

所以每次交易我都不会太焦急进场,因为我知道我的预期只是100--200点,一个波段而已,我要把机会留给把握最大的机会再去做。

注意事项:其实招式套路无所谓适合自己就可以。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

THESIMPLE PIPS GENERATINGMACHINECREATED BYEKONYE G. KINGXd_analyst (Marketiva id)Yahoo chat id: powerking02Email: pkingx@THE SIMPLE PIPS GENERATING MACHINEThe Foreign Exchange market ‘FOREX’ as it is popularly called no doubt is the largest financial market in the world today with transactions worth several trillions of US dollars exchanging hands on a daily basis.Trading forex might be a highly profitable business venture but I must say this; its not a get-rich-quick avenue that any Tom, Dick and Harry could just jump into and hope to become a millionaire overnight…it requires a lot of hard work, discipline and patience as well as a touch of sound money management practice for one to be able to see the bright side of Forex at least consistently. I am just a little over 3 years in trading forex however and most unfortunately too, I spent a greater part of that 3 years in a fruitless search for the ‘Holy Grail’ the one I will love to call ‘Traders Paradise’ a paradise where price moves in a straight line (no swings), a paradise where every opened position ends in profit…hmmm…very funny isn’t it? It took the latter part of my trading career to finally realize the truth about trading forex profitably…believe it or not, ‘the most profitable trading systems applied in forex are the simplest that ever existed’A good and profitable trading system in my own view should have at least the following characteristics;1.Simple2.Trend following3.Consistent and4.Applicable to all pairsHaving pointed all these out, now let’s get down to the point of this publication, the trading system I call ‘The simple pips generating machine’. I have a strong believe that this trading system isn’t new to most traders, it is probably one of those systems most have come across and neglected in the past in the quest for ‘The Holy Grail’ , it is very simple to setup, it follows trend, it is consistent and can be applied to any pair.SIMPLE PIPS GENERATING MACHINETIME FRAME: 1hr and 4hrs (Recommended)PAIRS: All pairsINDICATORS:1.SMA 5 (simple moving average set to period 5 applied to ‘close’ price)2.SMA 20 (simple moving average set to period 20 applied to ‘close’ price)3.MACD (set at default settings)SETUP:Your chart should appear like the one below; I took the liberty of adding color varieties to help make reading easy. Red for sma20, blue for sma5 and blue for macd bars.From the setup above, what we shall be looking out to trade will be crosses of sma5 and sma20, when sma5 crosses above sma20, it indicates a buy signal and when it crosses below sma20, it indicates a sell signal. More so, when sma5 stays above sma20 it suggests bullishness and when below sma20, it suggests bearishness. However, it’s not as simple as said because in the forex market, whether you like it or not price must swing and due to some irregular swings and whipsaws most times due to fundamental events or news releases, we are bound to see false crosses of sma5 and sma20 and in such situation what do we do? How do we fish out false crosses from valid ones? Also, in cases where we are able to spot valid crosses, I found out from experience and back testing that in the course of waiting to confirm a valid cross of sma5 and sma20 or waiting for a sizeable angular divergence between the two moving averages before making an entry you would have lost valuable amount of pips not only that, such late entry would expose you to setting your stoploss level way too far from entry with respect to most recent swings thereby also exposing you to what I love to term as ‘Poor Risk Reward Ratio’ such as 2:1,3:1 or worse.The chart below is an illustration of what am trying to buttress above for a trader who waits for a full cross-over or reasonable divergence of sma5 and sma20 after a cross before making an entry.A close look at the above chart, the entry was made after the move have gone by over80pips though it isn’t that bad but the point am making is that, it is still possible to find an entry way below that point of entry even before sma5 crossed above sma20 and by so doing, one would have succeeded in reducing that stoploss margin from over 100pips to even less than 50pips thereby improving the risk/reward ratio positively.This is the point where our MACD will now come to the rescue. The macd will be used as filter to help fish out false crosses from true ones, help spot the move way earlier before the actual cross between sma5 and sma20 occurs, furthermore, it will also help avoid exiting a position prematurely for those who likes to let their profit run.Now let’s get down to business…BUY SIGNAL:The MACD combines wonderfully with sma5 and sma20 to help spot early signs of reversals with respect to the time frame under study.When MACD is combined with sma5 and sma20, I found out a lot of interesting things. For a buy signal, macd is the first to show signs, for a buy signal to occur on macd, there must have been a downtrend previously which means the blue macd bars pierces through the red signal line downwards below the 0.00 line. The first blue bar that pulls away fromthe red macd signal line (or goes above it) and towards the 0.00 line gives the first buy alert.At this point, when sma5 and sma20 are yet to cross, I observed over 90% of the times, price does rises towards sma20 and over 85% of the times, it hits or pierces through sma20 then bounces back to form a low higher than the previous low (forms lower low too in very rare cases) with respect to the time frame under study. I also observed that after the bounce off sma20 to the new higher low/lower low, price reacts so very swiftly and head to break and close above sma20 and that is when you start noticing signs of crossing of sma5 and sma20.RECOMMENDED ENTRY:Your long entry is made at first shoot or close of price candle below sma5 right after the bounce off sma20 to form new higher low/lower low and set your stoploss some 10-15pips below the previous low. With this, you would have succeeded in making an entry at a better price level with a tighter stoploss than the trader who is busy waiting for clear cross of sma5 and sma20. Let’s take a look at the same chart used earlier but with macd added this time if there would be any difference.Now take a good look at the new chart with macd added much difference I guess? Yea sure so much, it gave two very profitable entry opportunities, same stoploss level as first but this time tighter because of early entry signal given by macd and richer risk/reward ratio compared to the entry made in earlier chart without macd filter. So amazing isn’t it? …lol.First entry on chart without macd was at 1.6208, exit target at 1.6365 and stoploss below 1.6107 while entries made on chart with macd was at 1.6149 (with hope that it may just be a spike) and 1.6119 (an actual close below sma5) but with same stoploss as the first at below 1.6107 and same exit target at 1.6365. Now who is more rewarded? I will leave that for you to figure out at least you have the figures so do the calculations.EXCEPTION:There are times when price may have closed above sma20 before macd signals a buy, in such case, please wait for price to pullback to hit sma20 then you may now make your entry. In a case like this, your stop loss should be placed at a reasonable distance below sma20 depending on volatility of currency pair in question. The chart below shows is an illustration of what I am trying to point out.Now lets take a look at the opposite side of buy…sell signal…lets go…SELL SIGNAL:A sell signal can easily be spotted applying this system; it’s just the direct opposite of a buy signal. Just like the case of a buy signal, the macd is first to show signs of possible move of price action to the downside, the first macd blue bar that pulls right below the red signal line towards 0.00 line gives first sign of change in trend or reversal with respect to time frame under observation. At this time sma5 and sma20 are yet to cross, next you wait for price to hit sma20 and an inevitable bounce back is seen in most cases and then a new lower high/higher high is formed and at that point, you may take a short entry at first shoot or close of price above sma5 and set your stoploss 10-15pips above previous high or 25-30pips above new high whichever case it may be.See chart below for illustration,EXCEPTION:There are times when price may have closed below sma20 before macd signals a sell, in such case, please wait for price to pullback up to hit sma20 then you may now make your entry. In a case like this, your stop loss should be placed at a reasonable distance above sma20 depending on volatility of currency pair in question. See chart below for illustration.EXIT TARGET ISSUES:This issue is one that may cause so much to worry about, I am a full time intraday trader and with this system, I found out I am able to get good trade setups more often so i decided to always place my target moderately. I have tried this system on the following pairs listed below and came up with an average must-hit exit targets both on 1hr and 4hrs time frames respectively (for non-greedy traders);1hr (pips) 4hr (pips)EUR/USD 60 100GBP/USD 80 150EUR/JPY 80 120GBP/JPY 100 200AUD/USD 70 100USD/CHF 50 100USD/CAD 80 120USD/JPY 50 100EUR/GBP 40 80GBP/CHF 70 120NZD/USD 60 100EUR/AUD 100 140EUR/CHF 50 80AUD/JPY 80 150Another observation I made was that after each cross of sma5 over sma20, a newhigh/low is reached and then most of the times, price retraces to retest sma20 then goesback to break that new high/low made and in such cases, one can apply knowledge of 1-2-3 formation and calculate price projection to figure out how far up/down its likely to goafter breaking the said new high/low it made after the cross of sma5 over sma20.CONCLUSION/GENERAL DISCUSSIONThis system is however not limited to 1hr and 4hr time frames, it can as well be appliedto lower and higher time frames at least back testing have been able to prove this.Another very important issue is that their are cases where failures occurred that is after anmacd buy/sell trigger, it trades for a while and then the bars starts extending back towardsthe signal line, I will advice at such situation if stoploss is yet to trigger then exitingmanually wont be that bad otherwise stoploss is always there to rescue. For those whowill prefer trading the hourly time frame, I will like to add this, there are times when the1hr chart will seem clumsy without a clear pattern or direction most times due toprolonged period of price being range bound and this will tend to lead to macd givingmultiple buy/sell signals within very short time intervals which may not be right, pleaseyou should see 4hr chart to help in taking a decision. There is also the issue of timing; Iobserved that buy/sell triggers that occurred between 03.00hours GMT and 10.00hoursGMT are more likely valid most of the time than any other time of the day so please dokeep this at the back of your mind.Finally, this system will appear more profitable if one applies a fair knowledge ofsupport/resistance as well as trend lines/price channels to it.Should there be any part of this document that lacks clarity, please do not hesitate tocontact me using any of the contact means listed on the cover page so we can treat ittogether and if you have ideas that could improve the strength or add more filter to thissystem, please I would be more than glad to have you share it with me.Lets all work together so that we will be able to combat losses and have it reduced to thebarest minimum but please always remember that however perfect a trading system mayseem, it definitely can ‘NEVER’ guarantee 100% wins.Good luck everyone!d_analystTrading Futures and Options on Futures and Cash Forex transactions involves substantialrisk of loss and may not be suitable for all investors. You should carefully considerwhether trading is suitable for you in light of your circumstances, knowledge, andfinancial resources. You may lose all or more of your initial investment. Opinions, marketdata, and recommendations are subject to change at any time.。

相关文档
最新文档