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;
*상업적 사용 및 스팸은 허용되지 않으며 계정이 해지될 수 있습니다.
팁: 이미지/유튜브 URL을 게시하면 게시물에 자동으로 삽입됩니다!
팁: @기호를 입력하여 이 토론에 참여하는 사용자 이름을 자동으로 완성합니다.