Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 39,322
» Latest member: DishisdesignJewellery
» Forum threads: 926
» Forum posts: 6,383

Full Statistics

Online Users
There are currently 557 online users.
» 0 Member(s) | 557 Guest(s)

Latest Threads
An official Gekko service...
Forum: Announcements
Last Post: tanvirai
11-20-2025, 12:18 PM
» Replies: 113
» Views: 291,607
Gekko development status ...
Forum: Announcements
Last Post: erectilenovus
11-17-2025, 11:36 AM
» Replies: 753
» Views: 1,767,960
Gekko 0.6 released
Forum: Announcements
Last Post: soniyathakur
11-02-2025, 12:21 PM
» Replies: 129
» Views: 380,291
Gekko with malware spotte...
Forum: Announcements
Last Post: cofffee124
10-30-2025, 09:56 AM
» Replies: 216
» Views: 346,021
New Gekko UI in the works
Forum: Announcements
Last Post: cofffee124
09-04-2025, 08:12 AM
» Replies: 186
» Views: 390,460
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 159,120
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 31,836
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 70,990
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 87,737
Is there any way to make ...
Forum: Custom Systems
Last Post: seorun
10-05-2021, 08:20 AM
» Replies: 42
» Views: 134,735

 
  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?? 


.jpg   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!


  How to buy at a specific price
Posted by: gkendrick - 02-10-2019, 01:56 AM - Forum: Technical Support - No Replies

I want to buy at specific price and sell at a specific price created from my strategy. How do I do that? Be specific please and thank you.


  PHP backtesting scripts
Posted by: deadheadtn - 02-07-2019, 12:09 AM - Forum: Third Party Software - No Replies

Hello guys

Am working on PHP scripts for finding the best Parameters of a strat and i've shared the scripts 
https://github.com/deadheadtn/gekkoBacktest
feel free to improve the code i'll approve the commit if it's good 
i will be working on improving 

Cheers


  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! Smile


  Buy/Sell JS Code, what's the file name?
Posted by: gkendrick - 02-05-2019, 04:23 PM - Forum: Technical Support - No Replies

Where is it and what's the name of the file?


  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?


  Currency and asset
Posted by: ksawus - 02-03-2019, 08:59 PM - Forum: Automated Trading - No Replies

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?



Attached Files
.png   Screenshot at Feb 03 21-57-37.png (Size: 128.46 KB / Downloads: 22)

  BTT
Posted by: Khaos - 02-03-2019, 03:05 PM - Forum: Binance - Replies (2)

Hey guys!

Would love to trade BTT, but I can't see it in Gekko Binance Coin, any help?

Cheers and good trades for all!