// Sell when RSI > 75 - want to change to allow for riding bull trends properly. - watch rsi each candle after 75 and sell when it starts dropping again.
if (rsi2.result > 75 && advised) {
this.sell('Take Profit - RSI past 75');
I want to trigger it when the RSI hits 75, to check every candle and see if the RSI is higher or lower than the last candle, if its higher, do nothing, if its lower, sell.
Any one help me work out how to do this? Im pretty new to code..
Hello!
I would like to know on which currency i need to have a some balance? On asset or on currency. I mean the part when you choose your currency and asset? Gecko sometimes returns this message(screenshot in attachment) What does it mean?
As im sure many of you will have encountered, when using large datasets to backtest on the gekko ui along with smaller candles the UI gets very laggy and slow because it has to process so much data.
I was hoping there was a way to cache the backtest page after it loads so that it would return the speed to the browser page for viewing the results of each test?
I would like to ask for help to add Bitso exchange to gekko.
There is a lot info about how to use the Bitso API but Im not a programmer, its like a totally language for me. https://bitso.com/api_info#introduction
I can share all my forex bots if you can help me to build the importer in gratitude. I attach a picture of the bots I have, they got a value greater than +1k usd together.
I believe I have found the rolling distro I like, but I must be able to install JRivers Media Center which only comes as a deb file. How do I do this or add it to the repository?
Link: https://yabb.jriver.com/interact/index.p...087.0.html
I am using ADX in my strat but i found that every time i restart gekko or greenGekko , ADX must wait till it get all live data from the exchange first before it start using it even if you restart gekko with no time between . but other indicators like RSI doesnot do that . it read the previous candle values and calulate it .
and that is a big issue if you use 4 hour candle and ADX with 14 period . you would wait days before gekko start trading ,
poc :
1-use adx 14 period and rsi 14 period and run gekko or import the most recent data from exchange .
2- console log adx value and rsi value to the screen and wait till both start showing values
3- restart gekko
you will find that rsi keep showing and calculating its value while adx MUST wait for another 14 candles to start printing value again
right now i am using work around to save adx value to a file and read from there as i am using multi time frames wth 4 Hours and i cant wait days till my trade kicks in