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網址會自動嵌入到您的帖子中!
提示:鍵入@符號,自動完成參與此討論的用戶名。