Hi, Ive been using gdax for a couple of years now and just recently I am starting to get charged on all limit orders. Not stop limit, just standered limit buy and sell orders. Is this right? Has something changed that I am not aware of?
hi.
yesterday my bot made a trade in cli with lets say 8% gain. today gekko posted it made again a trade with 8%. i was happy but discoverd, the new balance was the same as before. i checked at the exchange and there was no such trade. so the new trade just didnt happen. what could be the problem?
I've run Gekko for some 300 canldes. It shows 6 trades, 2 roundtrips, and lost 0.54%. Downloading offline data and running backtest over the same time with the same strategy and settings shows 34 trades, 16 roundtrips and a win of 11.0%.
How come?
And even more important, how can make trading results match backtesting?
After testing lots of strats and lots of indicators using both classic and green gekko .i reached the truth that whatever you do it will NEVER get the same values for your indicators as in the exchange nor as in trdaingview . even if gekko starts giving correct results it will have a slight delay which increment for your values by time
the best way is to code your strat on trdaingview then use gekko as signal trader bot using email bridge for the trdaingview alerts.which works great .
The problem at first glance after going trough some forums is that the NPM version is to low.
At an earlier stage I updated npm to 11 but then sqlite gave a lot of problems along the same line
---
node-pre-gyp WARN Using request for node-pre-gyp https download
node-pre-gyp WARN Tried to download(403): https://mapbox-node-binary.s3.amazonaws....arm.tar.gz
node-pre-gyp WARN Pre-built binaries not found for sqlite3@4.0.6 and node@8.11.1 (node-v57 ABI, glibc) (falling back to source compile with node-gyp)
----
I've also tried to install SQLITE separately (sudo apt-get sqlite3) with no results.
For example if LineA > LineB, you know LineA crossed from below to above LineB at some point, but when?
And how would you do the "below to above" part?
They cross when LineA.value === LineB.value, but would you have to store the previous candle to know if it is coming from below to above or above to below?
Is there an easy way to do previous N candles or get the time at and time since the last cross happened?
Dear all,
I am new to this auto trading bot, and have just installed the bot on Windows.
I was trying to add my Binance API, but there is no Binance exchange installed/loaded. Any help pls.
I did a strategy where I just display the price on Binance for LUNBTC.
There is not sell/buy. I just want to see how Gekko is working.
I did set the frequency to 1 minute.
------------------- candleSize:1, //1 minute
-------------------
The tick rate is the default, so, as far as I know this is 20sec.
So, what I expect is that every minute it will display the price for LUNBTC.
The problem is that from time to time it gets blocked.
I did try to investigate by adding logs and here is what I have done.
I have added the below logs in the MarketDataProvider.
-------------------- // HANDLERS Manager.prototype.retrieve = function() { log.debug("Before source.fetch"); this.source.fetch(); log.debug("After source.fetch"); } ------------------
I have also added a log.debug entry in the marketFetcher ------------ etcher.prototype.fetch = function() { varsince = false; log.debug('Enter in Fetch '); if(this.firstFetch) { since = this.firstSince; this.firstFetch = false; } else since = false;