Clopma Swing Trader (由 Clopma)
The user has deleted this strategy.
Edit Your Comment
Clopma Swing Trader讨论
Feb 06, 2015 at 20:24
(已编辑 Feb 06, 2015 at 20:48)
会员从Dec 12, 2011开始
81帖子
I will use these posts/discussions to outline and explain my chart analysis updates on Myfxbook. I will also showcase the code snippets supporting my analysis. Each strategy snippet will include a firmly defined stoploss, Takeprofit and/or Risk:Reward ratio associated with the strategy. I will post some of my LIVE manual entries as they unfold here as well. Feel free to chip in your comments, follow my trade calls and learn how to trade like a professional.
CHART STRATEGY #1: CCI Extreme on daily charts
OP_SELL:
if(iCCI(NULL,PERIOD_D1,7,1)>200 && iClose(NULL,PERIOD_M1,0)-iClose(NULL,PERIOD_D1,1)>10*pt));
Stoploss = iHigh(NULL,PERIOD_D1,iHighest(NULL,PERIOD_D1,MODE_HIGH,2,1)+10*Point));
TakeProfit = Bid-25*Point;
//~~~~~~~~~~~~
OP_BUY:
if(iCCI(NULL,PERIOD_D1,7,1)<-200 && iClose(NULL,PERIOD_D1,1)-iClose(NULL,PERIOD_M1,0)>10*pt));
Stoploss = iLow(NULL,PERIOD_D1,iLowest(NULL,PERIOD_D1,MODE_LOW,2,1)-10*Point));
TakeProfit = Ask+25*Point;
CHART STRATEGY #1: CCI Extreme on daily charts
OP_SELL:
if(iCCI(NULL,PERIOD_D1,7,1)>200 && iClose(NULL,PERIOD_M1,0)-iClose(NULL,PERIOD_D1,1)>10*pt));
Stoploss = iHigh(NULL,PERIOD_D1,iHighest(NULL,PERIOD_D1,MODE_HIGH,2,1)+10*Point));
TakeProfit = Bid-25*Point;
//~~~~~~~~~~~~
OP_BUY:
if(iCCI(NULL,PERIOD_D1,7,1)<-200 && iClose(NULL,PERIOD_D1,1)-iClose(NULL,PERIOD_M1,0)>10*pt));
Stoploss = iLow(NULL,PERIOD_D1,iLowest(NULL,PERIOD_D1,MODE_LOW,2,1)-10*Point));
TakeProfit = Ask+25*Point;
*商业用途和垃圾邮件将不被容忍,并可能导致账户终止。
提示:发布图片/YouTube网址会自动嵌入到您的帖子中!
提示:键入@符号,自动完成参与此讨论的用户名。