Gekko Forum
Signal Code Help - Printable Version

+- Gekko Forum (https://forum.gekko.wizb.it)
+-- Forum: Gekko (https://forum.gekko.wizb.it/forum-13.html)
+--- Forum: Technical Discussion (https://forum.gekko.wizb.it/forum-23.html)
+--- Thread: Signal Code Help (/thread-57152.html)



Signal Code Help - Kris191 - 05-12-2018

HI all,

I want to add "successful Sell" signal to an output for the IRC bot, but im struggleing...

I have tried adding checkOrder and log.info to the output section but the bot doesn't understand the command. Can anyone help?

thanks


RE: Signal Code Help - susitronix - 05-13-2018

never tried this but.
i hope i understand your question!

Gekko supports a dozen of different output notifications
-Email
-Telegram
-Twitter
...
...
...


RE: Signal Code Help - Kris191 - 05-13-2018

Hi

Im looking to add onto the IRC plugin not a fan of the others tbh


RE: Signal Code Help - crypto49er - 05-13-2018

Haven't used IRC since mIRC back in the 90s...

I'm looking at ircbot.js. I don't see checkOrder function. I'm still relatively new at this, but that function is only available in each exchange's js file. So I don't think you can call checkOrder directly from the irc bot.


RE: Signal Code Help - Gryphon - 05-14-2018

Do you mean to get a message once a sell trade has completed? If so the trade event is probably what you're looking for - it gets called upon the completion of any trade.

Function on line 46 of the gforms plugin here: https://github.com/RJPGriffin/google-forms-gekko-plugin/blob/master/plugins/gforms.js


RE: Signal Code Help - Kris191 - 05-14-2018

Perfect thank you i will try and integrate this into the irc bot.