binary-com / binary-bot

Visual automation for binary.com
binary-bot.binary.sx
MIT License
231 stars 523 forks source link

Need help with code #3791

Open shafikgh opened 1 year ago

shafikgh commented 1 year ago

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

derivmaster commented 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

image

shafikgh commented 1 year ago

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