Open shafikgh opened 1 year ago
Hello friend @shafikgh ,
you need this for binary bot ?
the analisys will be for ticks or candles ? the CCI is only possible with Candles
For more questions & tutorial Official english Community telegram : neuronaltrader_community
Hello @derivmaster
Thanks for your attention.
Yes, please, i want the analysis for the candle one minute and the bot for binary.com or deriv.com
Thanks a lot
Hi everyone I have a strategy about the CCI indicator to use in trading in binary.com I would like to convert it to a language code xml For running in binary.com very well. Could you please help ? The code :
// CCI parameters period = 5 overbought_level = 100
// Trade parameters trade_size = 2 take_profit = 100 stop_loss = 100
// CCI crosses below overbought level from above if (crossesBelow(cci(period), overbought_level) and cci(period) > overbought_level) enter(trade_size, "put", take_profit, stop_loss)
// CCI crosses above overbought level from below if (crossesAbove(cci(period), overbought_level) and cci(period) < overbought_level) cancelTrade()
Martingale 2 ticks 2 And if it lose , keep open "put" until win.
I appreciate your help Thanks a lot