Why volume matters
The usual mistake new users make is using a big volume pairlist. “More pairs = more trades = more profits” they said. Sure, you might get more trades. But more trades won’t guarantee more profit. I would advice against trading…
The usual mistake new users make is using a big volume pairlist. “More pairs = more trades = more profits” they said. Sure, you might get more trades. But more trades won’t guarantee more profit. I would advice against trading…
Just because a strategy works good on a specific exchange, specific market (spot or futures), specific stake currency and specific config (especially pairlist), doesn’t mean it will automatically perform similarly on another exchange and/or another market with the same pairs.…
The cause of both issues is actually quite simple. In backtest, you get plenty of data, but on dry/live, you get limited number of data. The difference of the data can be problematic if you use the data wrongly. Let’s…
For now, the guide will only have steps for Docker usage. The proxy used in this guide is the proxy made by mikekonan. First, add this to your docker-compose.yml (use different tags for different platforms e.g. – latest-amd64, latest-arm-v6, latest-arm-v7,…
I’m using Binance Proxy by nightshift2k. The steps are slightly different for docker and non-docker uses. I’ll give the steps for both Docker Add this to your docker-compose.yml Then use this setting in your config for spot market For futures…
Users tend to get confused over these two candles. What is signal candle? What is trade candle? Signal candle is the candle that have the enter/exit signal. This candle is used to determine whether a trade should be opened This…
DISCLAIMERThe codes in this post is just for educational purpose, and not to be used on live trading Previously, all of our exit logics are applied on all trades, despite its enter_tag. But what if I want to have specific…
DISCLAIMERThe codes in this post is just for educational purpose, and not to be used on live trading To have multiple logics is quite easy. You can just do multiple dataframe.loc[] like this The issue with the code above is…
DISCLAIMERThe codes in this post is just for educational purpose, and not to be used on live trading If we use existing functions to create our custom indicators on previous post, in this post we will create a new function…
DISCLAIMERThe codes in this post is just for educational purpose, and not to be used on live trading There are times you might want to use an indicator that might not have been implemented by any of the available technical…