Using the Tipu CCI Indicator for Your Trading Strategy in MetaTrader 4

Mike 2018.07.17 02:09 24 0 0
Attachments

Hey there, fellow traders! Today, I want to share some insights about the Tipu CCI indicator. I've made some tweaks to the original code published in the Market by removing its compatibility with the Tipu Panel. This new version is all about learning and is perfect for anyone who’s keen on developing a trading system using this indicator.

So, how can you implement the Tipu CCI in your trading system? Here’s a straightforward example to get you started:

//---signal
int iSignal = iCustom(_Symbol,_Period,"Tipu CCI","",14,PRICE_TYPICAL,0,0,"",1,5,clrNONE,clrNONE,"",false,false,1,false,false,false,4,0);
//---trend
int iTrend = iCustom(_Symbol,_Period,"Tipu CCI","",14,PRICE_TYPICAL,0,0,"",1,5,clrNONE,clrNONE,"",false,false,1,false,false,false,5,0);

//---method#1
if(iSignal == OP_BUY) //buy signal, for sell signal use OP_SELL
if(iTrend == OP_BUY)  //buy trend, for sell trend use OP_SELL

//---method#2
bool bBuy = iCustom(_Symbol,_Period,"Tipu CCI","",14,PRICE_TYPICAL,0,0,"",1,5,clrNONE,clrNONE,"",false,false,1,false,false,false,6,0);
bool bSell = iCustom(_Symbol,_Period,"Tipu CCI","",14,PRICE_TYPICAL,0,0,"",1,5,clrNONE,clrNONE,"",false,false,1,false,false,false,7,0);

Feel free to experiment with this indicator and see how it can fit into your trading strategy. Happy trading!

List
Comments 0