This repository has been archived by the owner on Feb 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks for the report & fix 👍 |
Hello, am i reading this right that gekko can run on a mobile phone? if so can we get a guide written on how? I currently pay for a VPS which if i can get a mobile phone to run gekko i would look to remove. |
Nope, this simply means that something which was broken on arm architecture
is now fixed. Gekko only supports Linux, Windows (not windows mobile) and
MacOS (not iOS).
…On Wed, Aug 1, 2018 at 4:39 PM, Kris Simpson ***@***.***> wrote:
Hello, am i reading this right that gekko can run on a mobile phone? if so
can we get a guide written on how? I currently pay for a VPS which if i can
get a mobile phone to run gekko i would look to remove.
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#2391 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA7MD4qw_7WK6CG2-tI8eOb1L8Z6lTUsks5uMWkugaJpZM4VocvH>
.
--
PGP key at keybase.io/mikevanrossum
<https://keybase.io/mikevanrossum/key.asc>
|
askmike
added a commit
that referenced
this pull request
Aug 10, 2018
* [docs] install indicator libs without updating package.json * add tulip example strat configs, see #2341 * uppercase default macd strat * temp revert bfx dep to main repo (fixes importer) * binance set default fee as percentage * rename bitx to luno (#2352) * v0.6 support for bitx (aka Luno) * v0.6 support for bitx (aka Luno) * remove log * move dependency to gb * rename bitx to luno * rename bitx to luno * make sure we pass amount as positive value * make sure we overlap when importing trades * rm 500 as retryable error, see #2354 * only try to set fee when live trading, see #2358 * make gekko pic path relative * make select arrow path relative * Fix method name for stratNotification event * make sure we parse both TS (backtest) & moment strings (live) * make sure GB throws errors * only render warmup warning when there is required history * v0.6.4 * fix plugin event wire warning * check portfolio data before calculating report (#2369) * Changed several log messages from debug to warn (#2374) Changed "Not creating order" message and "exchange did not provide fee info" from debug to warn messages so users can see these issues even when debug is set to false. * make sure we pass on exchange error (#2379) * fix backtest result exporter in standalone mode (#2382) * make sure to pass order id in cancel edge flow, fix #2386 (#2387) * Emit trade and trade errors via Telegram (#2385) * Emit trade and trade errors via Telegram * Added semi-colons Added missing semi-colons in processTradeCompleted and processTradeErrored methods. * Register methods only if set to true in config * catch undefined CPU cores on ARM (#2391) * export portfolio values as part of stratCandles (#2402) * rm space in backtest export file location * [GB/Binance] retry on 403 (#2404) * completely disable broken limit order for now, fix #2398 * rewire cancelfix cb, see #2386 * remove slack dependency that is triggering warnings (#2408) * move slack plugin dep out of main repo * remove twitter & pushbullet plugin dependencies from main repo (#2409) * move slack dependency out of main repo * rm slack dep from main repo * also remove pushbullet & twitter deps from main repo * use forked bittrex dep with updated dependencies (#2410) * use bittrex fork with updated deps * [GB] introduce optimizedConnection flag in binance * [GB] catch strange networking error * update binance market files, see #2406 * [GB] point to supported_exchanges doc * [GB] add example usage, fix #2414 * assume CF maintainance to be recoverable, fix #2407 * use npm version of of forked bittrex dep * catch gb init errors * [sqlite] wait for 10 seconds on busy * throw errors, not strings * [GB] update bfx & cf markets * Update Luno (#2417) * v0.6 support for bitx (aka Luno) * v0.6 support for bitx (aka Luno) * remove log * move dependency to gb * rename bitx to luno * rename bitx to luno * temp fix simultaneous advice error * - re-add logging - Retry insufficient balance due to server update delay - Enhanced getPorfolio - getOrder now return fees * update * update * update * revert 4b5d09f * v.0.6.5
I do run this on my android (pixel 2) although understand it is not supported thus the pr |
Woa very cool to hear though. Didn't know anyone was running gekko on a
phone!
…On Sat, 11 Aug 2018, 00:06 tsrnc2, ***@***.***> wrote:
I do run this on my android (pixel 2) although understand it is not
supported thus the pr
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#2391 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA7MDyqQ-2p4Ut7oF7XX7XzPTnSuXHhcks5uPa-FgaJpZM4VocvH>
.
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
BUG
What is the current behavior? (You can also link to an open issue here)
node attempts to find the number for cores, failing on arm program errors and exits
What is the new behavior (if this is a feature change)?
defaults to 1 cpu if the number of cores is undefined
Other information:
@todo a config option in the general config would be nicer.
might add it if I have time something like this
//set this value to the number of logical cores defaults to all available
numCPUCores = null;