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: 929
» Forum posts: 6,493

Full Statistics

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

 
Question Help for creating very basic strategy
Posted by: mininpapoune - 02-19-2019, 11:37 AM - Forum: Strategy Development - No Replies

Hello,



I am really bad at programming (and in english Wink)
I have already create strategies based on existing examples with modify them for use on binance.

But now I need your help for start Heart

I would like to create a basic and really simple strategy to automate some trades.

the principle is very simple, when a BUY ORDER place to X sathoshi, it is necessary to place a purchase SELL ORDER to X+1 satochi, and the opposite, if a SELL ORDER takes place to X sathoshi, it is necessary to place a BUY ORDER to X-1 sathoshi,

ex: I have a buy order at 25 sat which is filled so a sell order at 26 sat is automatically placed.

Thank you to those who will help me out.
(I suppose it's really simple for a good developer but I'm willing to give a small reward for the time spent helping me out. )

David


  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 Smile


  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?