tradingview-api

Standardization between float and None types

Standardization between float and None types Question: I have converted the code from Pine Script to Python, but I am facing some problems. I’m not good in Python. import pandas as pd import pandas_ta as ta close = pd.read_csv(‘close-MATIC.csv’) def Z_4(src, length, smooth): mean = ta.sma(src, length) vlo = src – mean std = ta.stdev(vlo, …

Total answers: 1

Available data in TradingView's exported chart data file

Available data in TradingView's exported chart data file Question: To back-test a trading strategy, I use the replay feature in trading view and mark my trades by adding a "long position" or "short position" from the left panel. Like this: I need to save the data (chart data including the positions, or any other drawing …

Total answers: 1