Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 504 online users. » 1 Member(s) | 503 Guest(s) Kevin Kessler
|
Latest Threads |
An official Gekko service...
Forum: Announcements
Last Post: Ruslanjoshua
07-24-2025, 06:27 AM
» Replies: 111
» Views: 245,218
|
Gekko 0.6 released
Forum: Announcements
Last Post: Mediks
07-14-2025, 07:09 AM
» Replies: 123
» Views: 330,472
|
New Gekko UI in the works
Forum: Announcements
Last Post: celemtine
07-03-2025, 07:24 AM
» Replies: 185
» Views: 321,107
|
Gekko with malware spotte...
Forum: Announcements
Last Post: pugoing
07-01-2025, 02:29 AM
» Replies: 212
» Views: 272,194
|
Gekko development status ...
Forum: Announcements
Last Post: sanmarconns
10-21-2024, 06:34 PM
» Replies: 744
» Views: 1,453,005
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 133,221
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 22,776
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 56,852
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 71,469
|
crex24
Forum: Other exchanges
Last Post: marketingseo
10-05-2021, 09:47 AM
» Replies: 216
» Views: 509,848
|
|
|
Elliot Wave Gekko Strategy |
Posted by: jcdude - 07-30-2019, 11:26 PM - Forum: Strategy Development
- No Replies
|
 |
Hello
Has anyone developed a Elliot Wave indicator for Gekko.
I am looking for a indicator that I can tweak to suit my needs.
I would like to train a neural network with the output.
|
|
|
exchange wrapper binance error? |
Posted by: martyc - 07-27-2019, 05:00 PM - Forum: Technical Discussion
- No Replies
|
 |
Just seen an error 2013 when trading on binance and it looks to me like we have regressed a bit. Can someone please confirm?
It looks like commit 4b122cfdfb0e66225f769ac3db022bdb6b14aeda has been lost in the stable and develop branches
develop branch has this in exchange/wrappers/binance.js
if(funcName === 'checkOrder' && error.message.includes('Order does not exist.')) {
console.log(new Date, 'Binance doesnt know this order, retrying up to 10 times..');
error.retry = 10;
}
and the commit for [WIP] GB stability improvements #2330
wanted it to be this
if(funcName === 'checkOrder' && error.message.includes('Order does not exist.')) {
// order got filled in full before it could be
// cancelled, meaning it was NOT cancelled.
return callback(false, {filled: true});
}
Am I reading this right?
|
|
|
point me in the right direction |
Posted by: binaryatlas - 07-26-2019, 08:45 PM - Forum: General Discussion
- Replies (2)
|
 |
So i have gekko installed but I need some direction on where to head next. I understand the config and strategy js but what I am looking at doing it a small test. I have about $10 USDC on coinbase. I want to detect a buy then sell at a 1.3 % profit. I have a config i found on candle stick patterns so i might could use that for the buy sell points but what i need is where to see code related to placing a buy and a sell and how to limit that to only one buy and then one sell then onto the next buy/sell. I know $10 is low to trade with but it is enough for some trades on coinbase pro (gdax). I have been using smart trades over on 3commas but I do not have time to watch things manually. I have some eBay auctions running and those proceeds will go towards further testing. I appreciate and feedback the community can give me.
|
|
|
RSI Trailing buy/sell |
Posted by: andyH0r - 07-19-2019, 08:12 PM - Forum: Strategy Development
- No Replies
|
 |
Hey.
There is an idea of strategy, but no programming experience.
Maybe someone already had such ideas or developments?
RSI Trailing Stop
interval = 14
[thresholds]
low = 30
high = 70
[Trailing]
buy = 5
sell = 5
When RSI = 30, a buy signal is sent, when the price rises by 5% (purchase = 5) of the signal price, the purchase triggers in the market.
This feature allows you to make purchases deeper than the original signal.
Example: the signal worked at the level of $ 100, but the price dropped and reached $ 90, then the purchase will be made at the price of $ 94.5 (purchase = 5).
If the price immediately went up, the purchase will cost 105 dollars. The result is a shift of + 5% from the current minimum price.
When RSI = 70, stop loss is set from the current price of -5% (sale = 5). If the price goes up, the stop loss also moves up.
Example: RSI = 70 worked for $ 130, but it grew, reached $ 150 and fell. The sale will cost $ 142.5.
Or from 130 dollars went to decline, then sales will be at 123.5 dollars.
This feature is implemented on bitfinex.
|
|
|
NNv2 Install |
Posted by: jcdude - 07-17-2019, 09:43 PM - Forum: Technical Discussion
- Replies (4)
|
 |
Hello
I am trying to get the NNv2 strategy to run but it runs for a while then returns no trades at all.
I run it over 1 years data and it still shows no trades.
I copied the toml into the correct place and the strategies and indicators to their respective places.
These are my settings
threshold_buy_bear= 1.0
threshold_buy_bull= 2.0
threshold_sell_bear= -0.2
threshold_sell_bull= -0.5
NN_SMMA_Length= 4
maFast= 30
maSlow= 200
decay= 0.6
price_buffer_len= 90
stoploss_threshold= 6
waitTime= 200
This is the log error I am getting
uncaughtException TypeError: Indicators[type] is not a constructor
at Base.addIndicator (/opt/gekko/plugins/tradingAdvisor/baseTradingMethod.js:236:34)
at Base.bound [as addIndicator] (/opt/gekko/node_modules/lodash/dist/lodash.js:729:21)
at Base.init (/opt/gekko/strategies/NNv2.js:15:10)
at Base.bound [as init] (/opt/gekko/node_modules/lodash/dist/lodash.js:729:21)
at new Base (/opt/gekko/plugins/tradingAdvisor/baseTradingMethod.js:69:8)
at Actor.setupStrategy (/opt/gekko/plugins/tradingAdvisor/tradingAdvisor.js:61:19)
at Actor.bound [as setupStrategy] (/opt/gekko/node_modules/lodash/dist/lodash.js:729:21)
at new Actor (/opt/gekko/plugins/tradingAdvisor/tradingAdvisor.js:23:8)
at load (/opt/gekko/core/pluginUtil.js:98:22)
at /opt/gekko/node_modules/async/dist/async.js:1156:9
xxx POST /api/backtest 500 154ms -
Error: non-error thrown:
ERROR: I do not know the indicator NNv2
at Object.onerror (/opt/gekko/node_modules/koa/lib/context.js:105:40)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:189:7)
|
|
|
How to get Profits |
Posted by: qSurgeon - 07-17-2019, 05:24 AM - Forum: Technical Discussion
- No Replies
|
 |
Does anyone know how to obtain the profits programmatically from within the check function? I can see it in the CLI but cannot not seem to call it.
Thank you in advance.
|
|
|
printf "username:`openssl passwd -apr1`n" >> /etc/nginx/.htpasswd |
Posted by: casuza - 07-14-2019, 06:25 PM - Forum: Technical Support
- Replies (1)
|
 |
I installed gekko on an EC2 instance however by adding:
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
to the / etc / nginx / sites-enabled / default file and typing at the command prompt:
printf "username:` openssl passwd -apr1`n ">> /etc/nginx/.htpasswd
I am prompted to enter the password for 2 times, no other password I enter after I can access via web, presenting the user window and password and I can not access the web interface.
When I remove the
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
everything works perfectly
The EC2 instance is with ubuntu 18.04
nginx
https
Could someone help me? Sorry the english, more and the google translator.
|
|
|
|