Username: Password:

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Philippe1987

Pages: [1]
1
Beginners & Help / Re: Reference material quest
« on: August 10, 2021, 10:47:15 AM »
Hi IdahoDigital,

I don't think there is more reference material available other than the wiki ...

I also still consider myself a newbie, but I learned a lot by just trying out different strategies with very small amounts of money.
When the bot is running, I like to sit there and just watch what it does. Trying to understand its actions. Playing around with parameters and seeing its effect.
Sometimes I download the trades from Binance and go through the data to see exactly what the bot did.

Reading the wiki thoroughly also helped me a lot.

Are there any specific terms in the wiki that you don't understand?

Cheers,
Philippe

2
Beginners & Help / Re: Why did bot not buy or sell? (SOLVED)
« on: February 16, 2021, 10:12:37 AM »
I found out why it didn't buy.

Binance uses minimum trading value of 10USD.
Starting from an initial trading limit of 25, my DU's should theoretically be as follows:
* 25
* 50
* 10  <= but this was often times a little bit less than 10USD, let's say 9,8. And then the buy didn't go through

So I changed my trading limit to 25, and now it buys all the DU's.

Cheers

3
Beginners & Help / Why did bot not buy or sell? (SOLVED)
« on: February 15, 2021, 03:03:54 PM »
Hi all,

I'm running WhiteGoblin's strategy (v3) found here.

I'm trying to understand why the bot didn't buy and sell in the 2 situations described below.

Settings:
  • Buy Method: gain
  • Buy Level: -10
  • Sell Method: gain
  • Gain: 0.25
  • Trading Limit: 25
  • Min Volume To Buy: 1
  • Min Volume To Sell: 1
  • Funds Reserve: 0.0001
  • Period: 1
  • Medium EMA: 60
  • Fast EMA: 30
  • Double Up Enabled: on
  • DU Cap: 0.1
  • DU Cap Count: 12
  • DU Method: 0.5
  • DU Buydown: 0.5
  • TrailMe Buy: on
  • TrailMe Buy Range: 0.05
  • TrailMe Sell: on
  • TrailMe Sell Range: 0.05
  • TrailMe DU: on
  • Market Buy: on
  • Market Sell: on
  • Market DU: on
  • Trades Timeout: 0
  • Exchange Delay: 0

AutoConfig:
Code: [Select]
  {
    "CheckIfBull": {
        "pairs": {
            "exclude": "",
            "include": "ETH,BTC",
            "exchange": "binance"
        },
        "filters": {
            "BullCheck1": {
                "type": "exact",
                "ducount": 0
            }
        },
        "overrides": {
            "TRAIL_ME_SELL_RANGE": 0.1
        },
        "clearOverrides": false,
        "schedule": "*/3 * * * * *",
        "type": "manageOverrides",
        "debug": false,
        "enabled": true
    },
    "CheckIfNormal": {
        "pairs": {
            "exclude": "",
            "include": "ETH,BTC",
            "exchange": "binance"
        },
        "filters": {
            "BullCheck2": {
                "type": "biggerThan",
                "ducount": 0
            }
        },
        "overrides": {
            "TRAIL_ME_SELL_RANGE": 0.05
        },
        "clearOverrides": false,
        "schedule": "*/3 * * * * *",
        "type": "manageOverrides",
        "debug": false,
        "enabled": true
    },
    "DURange-Fast": {
        "pairs": {
            "exclude": "",
            "include": "ETH,BTC",
            "exchange": "binance"
        },
        "filters": {
            "ducount1": {
                "type": "smallerThan",
                "ducount": 2
            }
        },
        "overrides": {
            "DOUBLE_UP_CAP": 1,
            "TRAIL_ME_BUY_RANGE": 0.05,
            "DU_METHOD": 0.25,
            "DU_BUYDOWN": 0.25
        },
        "clearOverrides": false,
        "schedule": "*/3 * * * * *",
        "type": "manageOverrides",
        "debug": false,
        "enabled": true
    },
    "DURange-Normal": {
        "pairs": {
            "exclude": "",
            "include": "ETH,BTC",
            "exchange": "binance"
        },
        "filters": {
            "ducount2": {
                "type": "biggerThan",
                "ducount": 1
            },
            "ducount3": {
                "type": "smallerThan",
                "ducount": 7
            }
        },
        "overrides": {
            "DOUBLE_UP_CAP": 0.1,
            "TRAIL_ME_BUY_RANGE": 0.05,
            "DU_METHOD": 0.5,
            "DU_BUYDOWN": 0.5
        },
        "clearOverrides": false,
        "schedule": "*/3 * * * * *",
        "type": "manageOverrides",
        "debug": false,
        "enabled": true
    },
    "DURange-Slow": {
        "pairs": {
            "exclude": "",
            "include": "ETH,BTC",
            "exchange": "binance"
        },
        "filters": {
            "ducount4": {
                "type": "biggerThan",
                "ducount": 6
            }
        },
        "overrides": {
            "DOUBLE_UP_CAP": 0.1,
            "TRAIL_ME_BUY_RANGE": 0.1,
            "DU_METHOD": 1,
            "DU_BUYDOWN": 1
        },
        "clearOverrides": false,
        "schedule": "*/3 * * * * *",
        "type": "manageOverrides",
        "debug": false,
        "enabled": true
    }
}

Situation 1: why didn't the bot sell?




The price went 0.07% above the "sell at" gain line ... Why didn't it sell?


Situation 2: why didn't the bot buy?





The price dropped below the DCA buydown of 0.25% ... Why didn't it buy?


Another (or maybe related) issue:

The bot only does 2 DCA's after the initial purchase.
The 3rd one doesn't work:



I can see a lot of errors in the log file, related to the DU. Maybe it has something to do with it?

Code: [Select]
AVERAGING DOWN!!!
The value of this coin dropped below bought price (0.05474200146359769). Proceeding with DU!
2021/02/15 20:00:25: Entering sell cycle
Price raising up: activating Stop limit!!!
------------------------------------------------------------------------------------------------Error: {}
2001
┌───────────────────┬────┐
│ ɢƱҊβѺͳ RT Edition │    │
├───────────────────┼────┤
│ Callbacks         │ {} │
└───────────────────┴────┘

Thanks for helping me out!

Cheers


Thanks for helping me out!

Cheers,
Philippe

4
Technical Support & Development / Re: Remove manual trade
« on: February 12, 2021, 08:32:30 AM »
Thanks. Guess I'll work with that for now on.

Cheers

5
Technical Support & Development / Remove manual trade
« on: February 11, 2021, 08:01:37 AM »
Hi all,

Been experimenting with this awesome bot. So far, so good.
Yesterday I bumped into a problem:

I'm on Binance and I was in need of more USDT.
Because I had some Euro's left on my account, I did a trade EUR => BTC => USDT.
This BTC => USDT trade ended up in my Gunbot trades, and has a negative impact on my PNL analysis:




I would like to remove that trade from my statistics. Is that possible somehow?
Thanks!

Cheers,
Phil


6
Technical Support & Development / Re: Bugs/Issues tracker v3.2
« on: May 26, 2017, 10:39:29 PM »
Indeed, now I see the text. Thanks!

Hi all,

When I click the statistics button and go to the best currencies tab, all I see is this:


The text was there for me, but the color was inverted.    Try to select some text with your mouse, you should see it.

7
Hi,

Ouch, guess I should have used the forum search function a bit better.  :)
Thanks you!!
Cheers

Hi!

The solution was posted at the 3.2 bug report topic.

By Swordfish85:

Quote
I've also solved the freezing Console/Callback: like it's said ^^above.

My Way:
open your internet explorer
go to Tools
Hover over Safety
Turn Smart Screen Filter OFF
Click:
Internet options
Security
Trusted Sites
Sites
Add: http://127.0.0.1
Add
Close
Go To Internet
Custom Level
Search Miscellaneous
Enable Meta Refresh
OK
OK
restart Bot

or press Windows Button + R and run inetcpl.cpl and do the above...

also i've allowed gunthy.exe and control console sample through firewall via Internet Settings --> Firewall --> Add App through Firewall

Just my two cents....

8
Technical Support & Development / Re: Bugs/Issues tracker v3.2
« on: May 26, 2017, 10:16:28 AM »
Hi all,

When I click the statistics button and go to the best currencies tab, all I see is this:


When I open the log file, I see the bot generated the best currencies, but it just doesn't show in the GUI. :(


A friend of mine who also owns the bot has the exact same issue.

Thanks!

9
Technical Support & Development / GUI not refreshing in Amazon AWS
« on: May 26, 2017, 09:52:13 AM »
Hi fellow traders,

I ran the bot on my local computer for a couple of days with no problems.
Now I switched the bot to a free Amazon AWS (Windows Server 2012 R2).

It is running fine (it buys and sells and makes me some profit) but the GUI pages are not refreshing on their own: the data and numbers on screen do not change.

In order to see the most recent data, I have to refresh te page manually (right click => refresh):


Not a big issue at all, and most probably related to my Amazon AWS ... but does anyone know how to fix this issue? :-)
It's probably a Windows Server issue.

Thanks in advance!

Cheers,
Philippe

Pages: [1]