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;