technical icon indicating copy to clipboard operation
technical copied to clipboard

Various indicators developed or collected for the Freqtrade

Results 18 technical issues
Sort by recently updated
recently updated
newest added

hi i want to write this indicator in python but i dont have much time.. here is the tradingview's url https://tr.tradingview.com/script/zVhoDQME/ this indicator is very helpfull the filtering in the...

Enhancement
help wanted
pinescript

Hi. I was wondering if anyone has any experience with this indicator? https://www.tradingview.com/script/j1etwXMQ-Trend-Trader-Strategy/ ```pine //@version=4 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 21/01/2021 // This is plots the indicator developed by...

Enhancement
pinescript

https://www.tradingview.com/script/nXhuJpwr-Efficient-Trend-Step-Channel/ Can anyone code this indicator in python/numba please. Seems like i am getting stuck at this line not sure what it means `abs(change(src,length))/sum(abs(change(src)),length)` the result is supposedly a series...

Enhancement
pinescript

hi guys ..i want to improve some strategy based Divergencies.. i found an indicator in tradingview --> https://tr.tradingview.com/v/iN9FTv45/ can anyone convert to python ? actually i want to write a...

Enhancement
help wanted

I propose a new version for PMAX and Supertrend with loop. Same result but really faster def PMAX(dataframe, period, multiplier,length): start_time = time.time() df = dataframe.copy() last_row = dataframe.tail(1).index.item() mavalue...

Hi, any ideas how to implement [TradingView Pine RMA](https://www.tradingview.com/pine-script-reference/v4/#fun_rma) ?

Enhancement
Good first issue

HI Guys 1st thanks for creating such an amazing trading tool Freqtrade and the associated and important repositories. Im new to the game, and have only got into freqtrade and...

question

I am trying to calculate the body of the candle and to compare it with the bodies of previous 10 candles. Backtesting results with no trades whatever the number of...

``` # --- Do not remove these libs --- from freqtrade.strategy.interface import IStrategy from typing import Dict, List from functools import reduce from pandas import DataFrame from technical.indicators import ichimoku...

question

Hi! I've written Python code for Vortex Indicator. Since I'm only a newbie, could you check that code? I can't get almost any profit when backtesting. ``` python def vortex_indicator_plus(window...