Open JiSeopHyun opened 2 years ago
I think this request is combining 2 things, which should really be separate as they're not really related. It's one point to request a strategy (based on a new or existing indicator) - however the FSupertrend stuff is not related to this new strategy/indicator. While it could be added to it - the request doesn't include this - and i think it produces different signals than supertrend, anyway.
If you've made improvements to a strategy you'd like to contribute, i'd apreciate a Pull request - which is adding the changes directly to the repository.
For requestion a new strategy. Please use the template below.
Any strategy request that does not follow the template will be closed.
Step 1: What indicators are required?
I found an explanation that corresponds to QQE.
The Quantitative Qualitative Estimation (QQE) indicator is derived from Wilder’s famous Relative Strength Index (RSI). In essence, the QQE is a heavily smoothed RSI.
This is the original content. https://tradingtact.com/qqe-indicator/
And I also found some meaningful pseudo-code for this.
https://stackoverflow.com/questions/57164253/pinescript-to-python-getting-the-truth-value-of-a-series-is-ambiguous
Please list all the indicators required for the buy and sell strategy.
"(Volume Adjusted Moving Average) VAMA" , "Smoothed RSI" , "Slow Trailing"
Step 2: Explain the Buy Strategy
Please explain in details the indicators you need to run the buy strategy, then explain in detail what is the trigger to buy.
entry trend "Smoothed RSI" below "Slow Trailing" --> enter Short (Any Time) "Slow Trailing" below "Smoothed RSI" --> enter Long (Any Time) When VAMA is increased more than usual (hypetopt) is the best entry point
Step 1: Explain the Sell Strategy
exit trend "Smoothed RSI" crossed above "Slow Trailing" --> exit Short "Slow Trailing" crossed above "Smoothed RSI" --> exit Long When VAMA is increased more than usual (hypetopt)
Please explain in details the indicators you need to run the sell strategy, then explain in detail what is the trigger to sell.
Source
What come from this strategy? Cite your source:
This is my latest Fsupertrend that I have corrected.
--- Do not remove these libs ---
import numpy as np # noqa import pandas as pd # noqa from pandas import DataFrame # noqa from datetime import datetime # noqa from typing import Optional, Union # noqa
from freqtrade.strategy import (BooleanParameter, CategoricalParameter, DecimalParameter, IStrategy, IntParameter)
from numpy.lib import math import talib.abstract as ta import freqtrade.vendor.qtpylib.indicators as qtpylib import logging from functools import reduce
class FSupertrendStrategy(IStrategy):
ADD
########################### Original source: Juan Carlos Soriano ###########################
References
https://www.freqtrade.io/en/stable/strategy-advanced/#performance-warning https://www.freqtrade.io/en/stable/strategy-advanced/ https://www.freqtrade.io/en/stable/strategy-callbacks/#leverage-callback
I use the "Fsupertrend" strategy to backtest the practice and optimization. It brought a profit, but there were many cases where you could buy at the highs and sell at the lows and lose money. I came across QQE while searching for power to compensate for this. Thank you to everyone involved in the Freqtrade projector for their hard work. And it is a projector that helps several programmers and ordinary investors. I'm using a transformer.