Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 293 online users. » 1 Member(s) | 292 Guest(s) goedmedicine
|
Latest Threads |
An official Gekko service...
Forum: Announcements
Last Post: Ruslanjoshua
07-24-2025, 06:27 AM
» Replies: 111
» Views: 246,108
|
Gekko 0.6 released
Forum: Announcements
Last Post: Mediks
07-14-2025, 07:09 AM
» Replies: 123
» Views: 331,671
|
New Gekko UI in the works
Forum: Announcements
Last Post: celemtine
07-03-2025, 07:24 AM
» Replies: 185
» Views: 322,338
|
Gekko with malware spotte...
Forum: Announcements
Last Post: pugoing
07-01-2025, 02:29 AM
» Replies: 212
» Views: 273,829
|
Gekko development status ...
Forum: Announcements
Last Post: sanmarconns
10-21-2024, 06:34 PM
» Replies: 744
» Views: 1,462,910
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 133,688
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 22,844
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 57,016
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 71,649
|
crex24
Forum: Other exchanges
Last Post: marketingseo
10-05-2021, 09:47 AM
» Replies: 216
» Views: 511,121
|
|
|
State of the art of the arbitrage bot |
Posted by: Guysmo - 02-14-2019, 05:53 PM - Forum: Third Party Software
- No Replies
|
 |
Hi,
I discovered arbitrage buy Askmike's story about agent Smith.
I'm interested in this specially because you don't need a solid knowledge about trading to be successful but I'm maybe wrong.
I have few questions :
- Today arbitrage bot is always possible ? I read that some exchange have important fees.
- Did you try this kind of bot and what are the results ?
Thank you
|
|
|
Help, how to create multiple Gekko´s |
Posted by: SupraFan - 02-11-2019, 10:11 AM - Forum: Technical Support
- Replies (2)
|
 |
Hello guys,
im new to gekko and i installed Gekko to my RaspberryPi, everything works fine.
Im able to create my first trade and it looks good and he´s making some profits...
Now my question, im a total noob in Linux and i want to know how i can run multiple Gekkos at the time.
Has this something to do with this "PM2" thingi??
Did someone has a tuturial how to do it and how to set it up?
Regards,
Tim
|
|
|
095% partial trading implementation on backtesting side effects |
Posted by: Piff_Sara - 02-10-2019, 12:05 PM - Forum: Technical Discussion
- No Replies
|
 |
Hi everybody,
on papertrade and livetrade Gekko always buys asset using only the 95% of your total balance.
The reason why this is necessary it's clear --> https://github.com/askmike/gekko/issues/2434
The inconsistency I tried to solve regards the backtesting function, beacuse it assumes you always trade the 100% of your balance. So the backtesting "brain" works differently from the papertrade and live trade "brain". The side effect is in the image attached: in this particular case there is an overestimation of the results by the backtesting function. I didn't considered fees for the sake of simplicity.
Now we got a slight overestimation of the total profit, but we got just 3 roundtrips... what would happen if we would have thousands of them??
Image.jpg (Size: 78.84 KB / Downloads: 5)
So i modified the plugins\paperTrade.js file and I put a 0.95 factor at line 83 and 84, in order to make the backtesting "brain" working as the livetrade/papertrade one.
My question is: do you think am I messing up/forgetting something else?
Code: cost = (1 - this.fee) * this.portfolio.currency * 0.95;
this.portfolio.asset += this.extractFee(this.portfolio.currency/ this.price) * 0.95;
amount = this.portfolio.asset;
this.portfolio.currency = 0;
Hope this is gonna be helpful also for other people that are not aware of this 0.95 stuff.
Thanks!
|
|
|
Restore Gekko-Instance after Server restart |
Posted by: Bloodipwn - 02-05-2019, 07:47 PM - Forum: Technical Support
- Replies (4)
|
 |
Hey there gekko community,
I have a question regarding gekko-instances and the possiblity (if there is any) to resume them after my server (ubuntu) crashed/restarted.
Currently I'm using PM2 to get my gekko starting on reboot and that works quiet good, but the gekko-instances keep getting lost on every reboot.
Is there any possibility to save the status of gekko instances (for example for every minute that has been passed), so that when a server suddenly crashes and reboots the instance can be resumed immediately on restart?
I know that this is kinda specific, but I just wanna know if there is any possiblity to safe the instance with an interval set, so it and its information can be reused.
Thanks in advance for your help!
|
|
|
Bull trend riding RSI take profit |
Posted by: Shrike998 - 02-05-2019, 02:03 AM - Forum: Strategy Development
- Replies (2)
|
 |
Could someone help me to work out this code.. ?
Code: // 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..
Thanks!
|
|
|
How do I get out of a trade? |
Posted by: gkendrick - 02-04-2019, 01:21 AM - Forum: Technical Discussion
- No Replies
|
 |
I use the Advice Long to Buy and the Advice Short to Sell …as in Exit/Close the trade.
The Buy works fine and the order gets filled, but the Sell sometimes does get filled. So it’s keeping me in the trade way longer than I should be.
I display a message in the console log when it buys and sells. I get both messages, but when I go into Coinbase there is no Sell Order.
What can I do?
|
|
|
|