-
Notifications
You must be signed in to change notification settings - Fork 157
⚡️ Weighted Signal: PVT - Price Volume Trend #54
Conversation
First of all, thank you! 🙏
In case of the latter then I'll have to ask you for a vanilla test (without the PVT indicator, but using the same |
commit: dc3142a
command line: freqtrade hyperopt -s MoniGoManiHyperStrategy \
-c ./user_data/mgm-config.json \
-c ./user_data/mgm-config-private.json \
--hyperopt-loss WinRatioAndProfitRatioLoss \
--spaces all \
-e 300 \
--random-state 2 \
--timerange 20210521- highlevel results:without pvt
with pvt
|
@@ -30,7 +30,9 @@ | |||
# Weighted Buy Signal: SMA short term Golden Cross (Short term SMA crosses above Medium term SMA) | |||
'sma_short_golden_cross': lambda df: (qtpylib.crossed_above(df['sma9'], df['sma50'])), | |||
# Weighted Sell Signal: VWAP crosses above current price | |||
'vwap_cross': lambda df: (qtpylib.crossed_above(df['vwap'], df['close'])) | |||
'vwap_cross': lambda df: (qtpylib.crossed_above(df['vwap'], df['close'])), | |||
# Weighted Buy Signal: PVT crosses above PVT_SMA (Price and volume increase) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: please fix the # identation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in 8f2b61f
Thank you for your work so far @andif888! 🦾 However at the moment I can't see any clear improvements in the HyperOpt Results here can you? 👀 Also I'm thinking about only adding new indicators / weighted signals into the mix at the end of a development cycle, a little bit before packing up a release. So we'll always remain to have consistency in our weighted signals while implementing the things for the next version of MGM. To keep track of upcoming versions and things still needed in them you can check the Milestones |
This adds a "Price Volume Trend Indicator" to the strategy according to this implemenation at https://www.tradingview.com/script/3Ah2ALck-Price-Volume-Trend/