Hello everyone. I have a problem with my tradebot. It is not making any trades, while papertrader with the same strategy and started at the same time is making trades. I have added API keys through the UI and in the config.js script, changed "enabled: false" to "enabled: true" as well.
![[Image: IJClrsw.jpg]](https://i.imgur.com/IJClrsw.jpg)
I wanted my tradebot to buy using market price, not limit order, so I've changed the config.js file. But still don't know if I should change the "quantity" section, if I want my tradebot to use all my BTC I have? Or there should be "amount" as it is now?:
![[Image: 6mb6c7N.jpg]](https://i.imgur.com/6mb6c7N.jpg)
My strategy (RSI_BULL_BEAR_ADX), 1 minute, 10 minutes warmup:
Is there something I am doing wrong, so my tradebot is not making any trades? How can I fix that?
![[Image: IJClrsw.jpg]](https://i.imgur.com/IJClrsw.jpg)
I wanted my tradebot to buy using market price, not limit order, so I've changed the config.js file. But still don't know if I should change the "quantity" section, if I want my tradebot to use all my BTC I have? Or there should be "amount" as it is now?:
![[Image: 6mb6c7N.jpg]](https://i.imgur.com/6mb6c7N.jpg)
My strategy (RSI_BULL_BEAR_ADX), 1 minute, 10 minutes warmup:
Code:
[SMA]
long = 6
short = 3
[BULL]
rsi = 4
high = 68
low = 33
mod_high = 5
mod_low = -5
[BEAR]
rsi = 2
high = 90
low = 5
mod_high = 15
mod_low = -5
[ADX]
adx = 15
high = 44
low = 21
Is there something I am doing wrong, so my tradebot is not making any trades? How can I fix that?