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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 28,496
» Latest member: b52clubmxcom
» Forum threads: 1,541
» Forum posts: 8,064

Full Statistics

Online Users
There are currently 173 online users.
» 2 Member(s) | 171 Guest(s)
jamesmartinjs12, Pharagon

Latest Threads
Gekko development status ...
Forum: Announcements
Last Post: kontho
9 hours ago
» Replies: 1,006
» Views: 931,029
Gekko with malware spotte...
Forum: Announcements
Last Post: Dstewarts
9 hours ago
» Replies: 189
» Views: 170,084
Gekko 0.6 released
Forum: Announcements
Last Post: Pharagon
11-23-2024, 10:13 AM
» Replies: 122
» Views: 269,025
An official Gekko service...
Forum: Announcements
Last Post: drivemad2
11-22-2024, 07:24 AM
» Replies: 103
» Views: 189,825
New Gekko UI in the works
Forum: Announcements
Last Post: clduplicateremover
11-18-2024, 08:21 PM
» Replies: 174
» Views: 227,678
How to Soft Reset or Hard...
Forum: General Discussion
Last Post: lucifar
10-07-2021, 07:18 PM
» Replies: 22
» Views: 53,010
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 108,371
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 19,115
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 45,825
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 58,576

 
  How to know if this.advice('long');'wass succeful
Posted by: bitvars - 04-11-2018, 12:48 PM - Forum: Technical Support - Replies (4)

Hi, I what to know if it's possible to check for result after this.advice call. I need to realize if buy or sell was successful or not in order make decisions.

For example if bot calls this.advice and buy fails because lack of currency, keeping trying to buy later but no to sell because can't get any asset.

Thanks in advance.


  TRADE.TOML FILE
Posted by: cena3 - 04-11-2018, 10:14 AM - Forum: General Discussion - Replies (4)

HI, can someone get me the commercial file that has been prepped and works for the test without mine?


  MY bot don´t trading
Posted by: cena3 - 04-11-2018, 08:48 AM - Forum: General Discussion - Replies (2)

Hi, my gekko don't trading, can someone tell me what to do if I have to put some amount? or config?


  Please change Pinescript code to Gekko Strategy.
Posted by: net21u - 04-11-2018, 12:29 AM - Forum: Strategy Development - No Replies

Hello. I am very new to the gekko.
I have Tradingview pinescript code but I am poor at javascript.
Can someone change below code to Gekko strategy?
Thank you.
--------------------------------------------------------------
//@version=2
study(title="MODIFIED ADX", shorttitle="MODIFIED ADX", overlay=true)
//
//VAR
lenadx = 14 //DI Length
lensig = 14 //ADX Smoothing
limadx = 18 //ADX Green Active

//CACULATION
up = high - high[1] //ORIGINAL : up = change(high)
down = low[1] - low //ORIGINAL : down = -change(low)
trur = rma(max(max(high-low, abs(high-nz(close[1]))), abs(low-nz(close[1]))), lenadx)
plus = fixnan(100 * rma(up > down and up > 0 ? up : 0, lenadx) / trur)
minus = fixnan(100 * rma(down > up and down > 0 ? down : 0, lenadx) / trur)
sum = plus + minus
adx = 100 * rma(abs(plus - minus) / (sum == 0 ? 1 : sum), lensig)

macol = adx > limadx and plus > minus ? lime : adx > limadx and plus < minus ? red :black
//
//BUY OR SELL
buy = macol != black and ((macol == lime and macol[1] == red) or (macol == lime and macol[1] == black)) ? true : na
sell = macol != black and ((macol == red and macol[1] == lime) or (macol == red and macol[1] == black)) ? true : na
//END


  Schaff Trend Cycle
Posted by: Henry151 - 04-10-2018, 09:33 PM - Forum: Strategy Development - Replies (22)

Hello everybody,

Have any of you played with the Schaff Trend Cycle at all? I think it could be really great.
https://www.investopedia.com/articles/fo...icator.asp

I have managed to put together a strategy in "pine script," the language used over at tradingview:
https://www.tradingview.com/chart/lEaTj9yp/

That strategy looks like it beats the market by more than 40% when backtested against the last couple months. The source code (in pine script) is here: https://bpaste.net/show/937e9df5278a

Mike was kind enough to link me to this script:
https://www.prorealcode.com/prorealtime-...nd-cycle2/

I am a novice, and haven't really done hardly any coding before, but I've managed to get gekko running, and I have been struggling to figure out how to code the STC into an indicator for gekko, so that I can try to translate that pine script strategy into a gekko strategy, and run it with some real money, or at least backtest it with gekko and see if it looks like it might work.

I would be willing to pay somebody but don't have much to offer, unfortunately, likely nowhere near enough to make it worth your while. I'm hoping that somebody will be interested in helping port this over to gekko and make it available open-source out of the goodness in their hearts. -- EDIT: Will consider any offers, willing to pay a bounty, name a price and we'll see if I can afford it!



Attached Files
.png   stc_chart.png (Size: 85.33 KB / Downloads: 82)
.png   STC_stats.png (Size: 39.62 KB / Downloads: 64)

  How to run gekko by ssh on remote and keep it running
Posted by: dirkb - 04-10-2018, 05:41 PM - Forum: Guides - Replies (4)

Hi,
can you help me? I'm able to login to a remote server by ssh and start a live gekko, but how to detach and reatach it when closing ssh?
How to deal with output?
Regards,
Dirk


  HODL & Greed Strategy with IRC support
Posted by: docdrow - 04-10-2018, 05:00 PM - Forum: Strategy Development - Replies (2)

Hey all, just wanted to share my Gekko strategy with the community. Best wishes!


https://github.com/gshearer/hodlgreed


  Setup of Telegram Notifications
Posted by: dirkb - 04-10-2018, 06:40 AM - Forum: Guides - Replies (8)

Hi,
can some explain here how to enable telegram messanger notifications?
I want to get an notification on each trade my gekko is doning with let's say some information. 
But how to start?
Regards,
Dirk


  Module Child/Process failures
Posted by: forspoons - 04-10-2018, 01:26 AM - Forum: Technical Support - No Replies

I'm a newbie, and started using Gekko today accessing data on Poloniex. 

1.  I have been able to get 2 Market Watcher Gekkos running, But I can't get any more MWs or start any Strategies.  Each time I tried, I received an error stating "Child Failure".  What can I do?
2.  How long do I need to wait watching a Market before I can run a Strategy?
3.  Each time I try to run a Gekko Strategy, the process fails.  What can I do?


Huh


  Gekko Architecture question
Posted by: docdrow - 04-09-2018, 09:57 PM - Forum: Strategy Development - Replies (10)

Hey all,

   I'm new to node.JS -- but I'm an old-school seasoned C programmer, so I am slowly but surely figuring things out.

   I'm looking for a variable I can access from a strategy context that can tell me the asset, currency, and exchange we're working on.

   Thank you for your time.